From 640ff61422bc0ee3966941b93d9889ddbbd38d77 Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Thu, 30 Jul 2026 18:17:14 -0600 Subject: more files --- src/dashboard/templates/includes/base.html | 35 ++++++++++++++++++++++++ src/dashboard/templates/includes/main-panel.html | 17 ++++++++++++ src/dashboard/templates/includes/sidebar.html | 26 ++++++++++++++++++ src/dashboard/templates/includes/top_navbar.html | 13 +++++++++ 4 files changed, 91 insertions(+) create mode 100644 src/dashboard/templates/includes/base.html create mode 100644 src/dashboard/templates/includes/main-panel.html create mode 100644 src/dashboard/templates/includes/sidebar.html create mode 100644 src/dashboard/templates/includes/top_navbar.html (limited to 'src/dashboard/templates/includes') diff --git a/src/dashboard/templates/includes/base.html b/src/dashboard/templates/includes/base.html new file mode 100644 index 0000000..751853b --- /dev/null +++ b/src/dashboard/templates/includes/base.html @@ -0,0 +1,35 @@ + +{% load static %} + + + + + + + + + + + + {% block javascript %}{% endblock %} + + + + + + + + + {% block stylesheet %}{% endblock %} + + Far-Edge Ops Middleware + + + +
+ {% include 'includes/sidebar.html' %} + {% block main_panel %} {% endblock %} +
+ + + \ No newline at end of file diff --git a/src/dashboard/templates/includes/main-panel.html b/src/dashboard/templates/includes/main-panel.html new file mode 100644 index 0000000..5e9aad7 --- /dev/null +++ b/src/dashboard/templates/includes/main-panel.html @@ -0,0 +1,17 @@ +{% extends 'includes/base.html' %} + +{% block main_panel %} +
+ + {% include 'includes/top_navbar.html' %} + + + +
+
+ {% block content %} No Content Added Yet {% endblock %} +
+
+ +
+{% endblock %} \ No newline at end of file diff --git a/src/dashboard/templates/includes/sidebar.html b/src/dashboard/templates/includes/sidebar.html new file mode 100644 index 0000000..5997f61 --- /dev/null +++ b/src/dashboard/templates/includes/sidebar.html @@ -0,0 +1,26 @@ + \ No newline at end of file diff --git a/src/dashboard/templates/includes/top_navbar.html b/src/dashboard/templates/includes/top_navbar.html new file mode 100644 index 0000000..5765358 --- /dev/null +++ b/src/dashboard/templates/includes/top_navbar.html @@ -0,0 +1,13 @@ + \ No newline at end of file -- cgit v1.3