aboutsummaryrefslogtreecommitdiffstats
path: root/src/expense/templates/tracker/trans.html
blob: c890e8c5b17bbe3470c6c2b8655b41583abc0138 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% from 'macros.html' import label_field %}
{% extends 'base.html' %}

{% block title %}Edit Entry{% endblock %}

{% block content %}
<form method="post">
  {{ 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 %}