From 4a16f580a25aba122a4990a61e0e96f4692b833c Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Mon, 28 Apr 2025 02:11:25 -0500
Subject: Initialise entry-point for managing publications.
---
uploader/templates/base.html | 3 ++
uploader/templates/publications/base.html | 12 +++++
uploader/templates/publications/index.html | 83 ++++++++++++++++++++++++++++++
3 files changed, 98 insertions(+)
create mode 100644 uploader/templates/publications/base.html
create mode 100644 uploader/templates/publications/index.html
(limited to 'uploader/templates')
diff --git a/uploader/templates/base.html b/uploader/templates/base.html
index 09e6470..de9c226 100644
--- a/uploader/templates/base.html
+++ b/uploader/templates/base.html
@@ -46,6 +46,9 @@
-
Home
+ -
+ Publications
-
Species
diff --git a/uploader/templates/publications/base.html b/uploader/templates/publications/base.html
new file mode 100644
index 0000000..db80bfa
--- /dev/null
+++ b/uploader/templates/publications/base.html
@@ -0,0 +1,12 @@
+{%extends "base.html"%}
+
+{%block lvl1_breadcrumbs%}
+-
+ Publications
+
+{%block lvl2_breadcrumbs%}{%endblock%}
+{%endblock%}
diff --git a/uploader/templates/publications/index.html b/uploader/templates/publications/index.html
new file mode 100644
index 0000000..f6f6fa0
--- /dev/null
+++ b/uploader/templates/publications/index.html
@@ -0,0 +1,83 @@
+{%extends "publications/base.html"%}
+{%from "flash_messages.html" import flash_all_messages%}
+
+{%block title%}Publications{%endblock%}
+
+{%block pagetitle%}Publications{%endblock%}
+
+
+{%block contents%}
+{{flash_all_messages()}}
+
+
+
+
+
+ # |
+ PubMed ID |
+ Title |
+ Authors |
+
+
+
+
+
+
+{%endblock%}
+
+
+{%block javascript%}
+
+{%endblock%}
--
cgit v1.2.3