From 62af4cf1e56a27db3d4a1dc33a759c83790a963e Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 14 May 2019 17:15:20 -0400 Subject: Add support for viewing annotations --- app/templates/admin/annotations.html | 6 + app/templates/admin/annotations_by_dataset.html | 159 ++++++++++++++++++++++++ 2 files changed, 165 insertions(+) create mode 100644 app/templates/admin/annotations_by_dataset.html (limited to 'app/templates') diff --git a/app/templates/admin/annotations.html b/app/templates/admin/annotations.html index 4807b8e..089de3b 100644 --- a/app/templates/admin/annotations.html +++ b/app/templates/admin/annotations.html @@ -1,7 +1,13 @@ {% extends "base.html" %} +{% import 'bootstrap/wtf.html' as wtf %} {% block app_content %}

View Annotations

+
+
+ {{ wtf.quick_form(form) }} +
+
diff --git a/app/templates/admin/annotations_by_dataset.html b/app/templates/admin/annotations_by_dataset.html new file mode 100644 index 0000000..5ad98b6 --- /dev/null +++ b/app/templates/admin/annotations_by_dataset.html @@ -0,0 +1,159 @@ +{% extends "base.html" %} + +{% block styles %} +{{super()}} +{% endblock %} + +{% block app_content %} +

View Annotations

+ +
+ + + +{% endblock %} -- cgit v1.2.3