Skip to content
Snippets Groups Projects
base_site.html 747 B
Newer Older
  • Learn to ignore specific revisions
  • {% extends "admin/base_site.html" %}
    
    {% load bootstrap4 %}
    {% load fontawesome_5 %}
    
    {% load static %}
    
    {% block extrastyle %}
        {% if not debug %}
            <link rel="stylesheet" type="text/css" href="{% static "common/css/admin-color.css" %}"/>
        {% endif %}
    {% endblock %}
    
    
    {% block extrahead %}
    
        <!-- Load popper before bootstrap loads -->
        <script src="{% static "common/vendor/popper/popper-1.14.7.min.js" %}"></script>
    
        <!-- Load bootstrap, jquery and fontawesome-->
    
        {% bootstrap_css %}
    
        {% bootstrap_javascript jquery='full' %}
    
        {% fontawesome_5_static %}
    
        <style>
            a.btn {
                color: #FFFFFF;
            }
    
            .block-header {
                margin-top: 20px;
            }
        </style>
    {% endblock %}