From 83cdfa913542e3870dbce918890c6a1ed45f27bc Mon Sep 17 00:00:00 2001 From: Paul Nathaniel Sango Date: Mon, 20 Jul 2026 03:39:42 +0800 Subject: [PATCH] Add library and history static templates for global nav. Release tip lacked these pages; required for HEADER_NAV_LINKS Library/History routes. --- .../lms/templates/static_templates/history.html | 16 ++++++++++++++++ .../lms/templates/static_templates/library.html | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 tutorindigo/templates/indigo/lms/templates/static_templates/history.html create mode 100644 tutorindigo/templates/indigo/lms/templates/static_templates/library.html diff --git a/tutorindigo/templates/indigo/lms/templates/static_templates/history.html b/tutorindigo/templates/indigo/lms/templates/static_templates/history.html new file mode 100644 index 000000000..27b401e1f --- /dev/null +++ b/tutorindigo/templates/indigo/lms/templates/static_templates/history.html @@ -0,0 +1,16 @@ +<%page expression_filter="h"/> +<%! from django.utils.translation import gettext as _ %> +<%inherit file="../main.html" /> + +<%block name="pagetitle">${_("History")} + +
+
+

+ <%block name="pageheader">${page_header or _("History")} +

+

+ <%block name="pagecontent">${page_content or _("This page left intentionally blank. Feel free to add your own content.")} +

+
+
diff --git a/tutorindigo/templates/indigo/lms/templates/static_templates/library.html b/tutorindigo/templates/indigo/lms/templates/static_templates/library.html new file mode 100644 index 000000000..051a801b0 --- /dev/null +++ b/tutorindigo/templates/indigo/lms/templates/static_templates/library.html @@ -0,0 +1,16 @@ +<%page expression_filter="h"/> +<%! from django.utils.translation import gettext as _ %> +<%inherit file="../main.html" /> + +<%block name="pagetitle">${_("Library")} + +
+
+

+ <%block name="pageheader">${page_header or _("Library")} +

+

+ <%block name="pagecontent">${page_content or _("This page left intentionally blank. Feel free to add your own content.")} +

+
+