Bundle the remaining static files

They are used in some template overrides. To prevent missing JS or CSS in the future in those template overrides, it's a good idea to provide HTML templates for these static files.
This commit is contained in:
Peter Pfeufer
2022-08-01 14:15:55 +02:00
parent 1072c00a28
commit afe3fea757
6 changed files with 8 additions and 7 deletions

View File

@@ -1,4 +1,3 @@
{% load static %}
{% load i18n %}
{% load navactive %}
{% load auth_notifications %}
@@ -16,8 +15,7 @@
{% include 'bundles/bootstrap-css.html' %}
{% include 'bundles/fontawesome.html' %}
<link href="{% static 'allianceauth/css/auth-base.css' %}" rel="stylesheet">
{% include 'bundles/auth-base-css.html' %}
{% block extra_css %}{% endblock extra_css %}
</head>

View File

@@ -0,0 +1,3 @@
{% load static %}
<link href="{% static 'allianceauth/css/auth-base.css' %}" rel="stylesheet">

View File

@@ -0,0 +1,3 @@
{% load static %}
<link href="{% static 'allianceauth/css/checkbox.css' %}" rel="stylesheet">