Staticfiles Restructure - removal of assets/

Removed meaningless assets/ folder within static.

I believe its an artifact from an older Django version, but it needed to be removed to reduce clutter and use {% static %} tags.
This commit is contained in:
2024-01-18 12:15:08 +00:00
parent a3b62f4a8e
commit 6df16f054b
60 changed files with 101 additions and 61 deletions

View File

@ -1,4 +1,6 @@
<!DOCTYPE html>
{% load static %}
<html>
<head>
<meta charset="utf-8">
@ -7,16 +9,16 @@
Django Adminator - {% block title %}{% endblock %}
</title>
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/colours.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/datepicker.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/fontawesome.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/themify-icons.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/scrollbar.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/adminator.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/jquery.dataTables.min.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/select2.min.css" />
<link type="text/css" rel="stylesheet" href="{{ ASSETS_ROOT }}/css/index.css" />
<link type="text/css" rel="stylesheet" href="{% static '/css/bootstrap.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/colours.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/datepicker.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/fontawesome.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/themify-icons.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/scrollbar.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/adminator.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/jquery.dataTables.min.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/select2.min.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/index.css' %}" />
<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}{% endblock stylesheets %}
@ -40,7 +42,7 @@
<!-- @Page Loader -->
<!-- =================================================== -->
<div id='loader'>
<div id='loader' class="bg-body">
<div class="spinner"></div>
</div>