diff --git a/biscuit/core/settings.py b/biscuit/core/settings.py
index 9a2565cb5db50aa1df4236440645243154747579..0c538db1b8f57a33b2cfd1a12a8645b327358a12 100644
--- a/biscuit/core/settings.py
+++ b/biscuit/core/settings.py
@@ -257,6 +257,7 @@ ANY_JS = {
         "css_url": JS_URL + "/datatables/media/css/dataTables.bootstrap4.min.css",
         "js_url": JS_URL + "/datatables/media/js/dataTables.bootstrap4.min.js",
     },
+    "material-design-icons": STATIC_URL + "@mdi/font/css/materialdesignicons.css",
 }
 
 SASS_PROCESSOR_AUTO_INCLUDE = False
diff --git a/biscuit/core/templates/core/base.html b/biscuit/core/templates/core/base.html
index 1137bf4917fabf5ecf911eb29dac4f1fae8868ea..c87fe544e7a25d15dada319a14cffaca5b817936 100644
--- a/biscuit/core/templates/core/base.html
+++ b/biscuit/core/templates/core/base.html
@@ -6,10 +6,10 @@
 
 {% block bootstrap4_extra_head %}
   {% include_css "DataTables-Bootstrap4" %}
+  {% include_css "material-design-icons"%}
   {% include 'core/icons.html' %}
   <link rel="stylesheet" href="{% sass_src 'bootstrap_modified.scss' %}" />
   <link rel="stylesheet" href="{% static 'css/style.css' %}" />
-  <link rel="stylesheet" href="{% static '@mdi/font/css/materialdesignicons.css' %}" />
 {% endblock %}
 
 {% block bootstrap4_title %}BiscuIT School Information System{% endblock %}