about summary refs log tree commit diff
path: root/uploader/templates/index2.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-12-08 11:30:03 -0600
committerFrederick Muriuki Muriithi2025-12-08 13:26:18 -0600
commitb348823f6e0215602f0901331b123a69ec056e8a (patch)
tree3b5a8cfe02de0b752d2d290c8e3f875e3ef90e0a /uploader/templates/index2.html
parent9514647b70fe90a709b2881e50871a6e15f1236e (diff)
downloadgn-uploader-b348823f6e0215602f0901331b123a69ec056e8a.tar.gz
Improve the streamlined UI for the index page.
Diffstat (limited to 'uploader/templates/index2.html')
-rw-r--r--uploader/templates/index2.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/uploader/templates/index2.html b/uploader/templates/index2.html
deleted file mode 100644
index 72fea2f..0000000
--- a/uploader/templates/index2.html
+++ /dev/null
@@ -1,48 +0,0 @@
-{%extends "base2.html"%}
-{%from "flash_messages.html" import flash_all_messages%}
-
-{%block title%}Home{%endblock%}
-
-{%block pagetitle%}Home{%endblock%}
-
-{%block extra_breadcrumbs%}{%endblock%}
-
-{%block contents%}
-
-<div class="row">{{flash_all_messages()}}</div>
-
-{%if user_logged_in()%}
-<div class="row">
-  <p>Select from:</p>
-  <ul>
-    <li>Species</li>
-    <li>Publications</li>
-  </ul>
-</div>
-{%else%}
-<div class="row">
-  <p>
-    <a href="{{authserver_authorise_uri()}}"
-       title="Sign in to the system"
-       class="btn btn-primary">Sign in</a>
-    to continue.</p>
-</div>
-{%endif%}
-
-{%endblock%}
-
-
-
-{%block sidebarcontents%}
-<div class="row">
-  <form id="frm-quick-navigation">
-    <legend>Quick Navigation</legend>
-    <div class="form-group">
-      <label for="fqn-species-id">Species</label>
-      <select name="species_id">
-        <option value="">Select species</option>
-      </select>
-    </div>
-  </form>
-</div>
-{%endblock%}