diff options
Diffstat (limited to 'app/budget/templates/budget/update_form.html')
-rw-r--r-- | app/budget/templates/budget/update_form.html | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/app/budget/templates/budget/update_form.html b/app/budget/templates/budget/update_form.html deleted file mode 100644 index b19efaa..0000000 --- a/app/budget/templates/budget/update_form.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends 'budget/base.html' %} -{% load typogrify_tags %} -{% block content %} - <form id="id_form" action="" method="post" class="big">{% csrf_token %} - {% for field in form %} - <fieldset> - {{ field.errors }} - {% if field.name == 'status'%} - <label class="hide" for="id_status">Status:</label>{{ field }} - {% else %} - {{ field.label_tag }} {{ field }} - {% endif %} - {% if field.help_text %} - <p class="help">{{ field.help_text|safe }}</p> - {% endif %} - </fieldset> -{% endfor %} - <input type="submit" name="post" class="btn" value="update purchase"/> - </form> - {% endblock %} |