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,9 +1,11 @@
<script src="{{ ASSETS_ROOT }}/js/jquery-3.6.0.min.js"></script>
{% load static %}
<script src="{{ ASSETS_ROOT }}/js/jquery.dataTables.min.js"></script>
<script src="{% static '/js/jquery-3.6.0.min.js' %}"></script>
<script src="{{ ASSETS_ROOT }}/js/ckeditor.js"></script>
<script src="{% static '/js/jquery.dataTables.min.js' %}"></script>
<script src="{{ ASSETS_ROOT }}/js/select2.min.js"></script>
<script src="{% static '/js/ckeditor.js' %}"></script>
<script src="{{ ASSETS_ROOT }}/js/index.js"></script>
<script src="{% static '/js/select2.min.js' %}"></script>
<script src="{% static '/js/index.js' %}"></script>