Skip to content
Snippets Groups Projects
base_site.html 670 B
Newer Older
{% extends "admin/base_site.html" %}

{% load bootstrap4 %}
{% load fontawesome_5 %}
{% block stylesheet %}{% static "common/css/admin-bootstrap.css" %}{% endblock %}

{% block extrastyle %}
    {% if not debug %}
        <link rel="stylesheet" type="text/css" href="{% static "common/css/admin-color.css" %}"/>
    {% endif %}
{% endblock %}

{% block extrahead %}
    <!-- Load bootstrap, jquery and fontawesome-->
    {% fontawesome_5_static %}

    <style>
        a.btn {
            color: #FFFFFF;
        }

        .block-header {
            margin-top: 20px;
        }
    </style>
{% endblock %}