From a393628ca2d8ffca03821a9a9f16b24a57017dcd Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Sat, 3 Jan 2026 19:20:41 -0500 Subject: [PATCH] refactor templates to use core/base.html, newly created; small accomodations to functional_tests for title and header block rendering --- templates/core/base.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 templates/core/base.html diff --git a/templates/core/base.html b/templates/core/base.html new file mode 100644 index 0000000..9a65c2e --- /dev/null +++ b/templates/core/base.html @@ -0,0 +1,19 @@ + + + + + + + + Dashboard | {% block title_text %}{% endblock title_text %} + + +

Dashboard | {% block header_text %}{% endblock header_text %}

+
+ + {% csrf_token %} +
+ {% block table %} + {% endblock table %} + + \ No newline at end of file