diff options
Diffstat (limited to 'app/templates/add-item.html')
| -rw-r--r-- | app/templates/add-item.html | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/app/templates/add-item.html b/app/templates/add-item.html new file mode 100644 index 0000000..acffa87 --- /dev/null +++ b/app/templates/add-item.html @@ -0,0 +1,20 @@ +{# -*- mode: web; -*- #} + +{% extends "base.html" %} + + +{% block title %}Add a new {{ item }}{% endblock %} +{% block content %} + +{# the form #} +<form action="{{ url_for('add_item', item=item) }}" method="POST"> +    <fieldset> +	<legend>Add a new {{ item }} to our database.</legend> +	{% for field in form %} +	{{ field.label() }} +	{{ field() }}<br/> +	{% endfor %} +    </fieldset> +</form> + +{% endblock %} | 
