diff options
Diffstat (limited to 'app/templates/add-item.html')
-rw-r--r-- | app/templates/add-item.html | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/app/templates/add-item.html b/app/templates/add-item.html deleted file mode 100644 index acffa87..0000000 --- a/app/templates/add-item.html +++ /dev/null @@ -1,20 +0,0 @@ -{# -*- 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 %} |