From 20cc8eab24191902394316519f4889e55bdec1c6 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Tue, 19 Mar 2019 14:51:04 +0000 Subject: Allow admin to add datasets --- app/templates/admin/add.html | 11 +++++++++++ app/templates/admin/index.html | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 app/templates/admin/add.html create mode 100644 app/templates/admin/index.html (limited to 'app/templates/admin') diff --git a/app/templates/admin/add.html b/app/templates/admin/add.html new file mode 100644 index 0000000..5c613c4 --- /dev/null +++ b/app/templates/admin/add.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% import 'bootstrap/wtf.html' as wtf %} + +{% block app_content %} +

Add Dataset

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

Admin Home

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