blob: 449aa99fe8bc0b1e00c7754b1fe477293363b64c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% from 'macros.html' import label_field %}
{% extends 'base.html' %}
{% block content %}
<form method="post">
<h2>Edit Entry</h2>
{{ form.hidden_tag() }}
{{ label_field(form.date) }}
{{ label_field(form.category) }}
{{ label_field(form.description) }}
{{ label_field(form.amount) }}
<div class="button-group">
{{ form.submit }}
{{ form.delete }}
</div>
</form>
{% endblock %}
|