about summary refs log tree commit diff
path: root/gn3/templates/admin/dashboard.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-03-15 04:28:26 +0300
committerFrederick Muriuki Muriithi2024-03-15 04:29:24 +0300
commita6ef95af5b6b072acdc02ba4db08c1bdda4c1f1a (patch)
tree9950b211af91945e9fcfe658a37dbde77ea25075 /gn3/templates/admin/dashboard.html
parentdd0b29c07017ec398c447ca683dd4b4be18d73b7 (diff)
downloadgenenetwork3-a6ef95af5b6b072acdc02ba4db08c1bdda4c1f1a.tar.gz
Remove ALL html templates from GeneNetwork3
GN3 provides an API to provide data, and needs no HTML UI.
Diffstat (limited to 'gn3/templates/admin/dashboard.html')
-rw-r--r--gn3/templates/admin/dashboard.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/gn3/templates/admin/dashboard.html b/gn3/templates/admin/dashboard.html
deleted file mode 100644
index 7798022..0000000
--- a/gn3/templates/admin/dashboard.html
+++ /dev/null
@@ -1,24 +0,0 @@
-{%extends "base.html"%}
-
-{%block title%}Genenetwork3: Admin Dashboard{%endblock%}
-
-{%block pagetitle%}Admin Dashboard{%endblock%}
-
-{%block content%}
-{{flash_messages()}}
-
-<ul class="nav">
-  <li>
-    <a href="{{url_for('oauth2.admin.register_client')}}"
-       title="Register a new OAuth2 client.">Register OAuth2 Client</a>
-  </li>
-  <li>
-    <a href="{{url_for('oauth2.admin.list_clients')}}"
-       title="List OAuth2 clients.">List OAuth2 Client</a>
-  </li>
-  <li>
-    <a href="{{url_for('oauth2.admin.logout')}}"
-       title="Log out of the system.">Logout</a>
-  </li>
-</ul>
-{%endblock%}