From 337951f1da87c3b879f2c627db7648f11a621e38 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 5 Jun 2024 16:58:34 +0200 Subject: [PATCH] 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. --- coffeemachine/servers/templates/servers/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coffeemachine/servers/templates/servers/base.html b/coffeemachine/servers/templates/servers/base.html index b241fbc..d11da93 100644 --- a/coffeemachine/servers/templates/servers/base.html +++ b/coffeemachine/servers/templates/servers/base.html @@ -1,4 +1,4 @@ - +{% load static %}