diff options
Diffstat (limited to 'app/templates/admin/add.html')
| -rw-r--r-- | app/templates/admin/add.html | 11 |
1 files changed, 11 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 %} |
