feat: enable static file loading in base template

Introduced Django's static file loader tag in the base HTML template to support loading of CSS, JavaScript, and other static files throughout the application. This change is essential for integrating frontend assets seamlessly, enhancing the functionality and user experience of the site.

This modification allows for a more structured and organized way of managing static content, improving the development workflow and making the site more maintainable and scalable.
This commit is contained in:
Kumi 2024-06-05 16:58:34 +02:00
parent 9ff6278ba1
commit 337951f1da
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -1,4 +1,4 @@
<!-- templates/base.html -->
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>