Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
base_site.html 749 B
{% extends "admin/base_site.html" %}

{% load django_bootstrap5 %}
{% load fontawesome_6 %}
{% load static %}

{% 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-->
    {% bootstrap_javascript %}
    <script src="{% static 'common/vendor/jquery/jquery-3.6.3.min.js' %}"></script>
    {% fontawesome_6_static %}

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

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