diff options
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/admin/add.html | 11 | ||||
| -rw-r--r-- | app/templates/admin/index.html | 13 |
2 files changed, 24 insertions, 0 deletions
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 %} +<h1>Add Dataset</h1> +<div class="row"> + <div class="col-md-4"> + {{ wtf.quick_form(form) }} + </div> +</div> +{% 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 %} +<h1>Admin Home</h1> +<ul> + <li> + <a href="/admin/add">Add dataset</a> + </li> + <li> + <a href="/admin/assign">Assign and view tasks</a> + </li> +</ul> +{% endblock %} |
