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

{% block content %}
<h2>Manage Categories</h2>
<form method="post">
  <div>
  {{ form.hidden_tag() }}
  {% for cat in current_user.categories %}
  <p>{{ cat.name }}</p>
  {% endfor %}
  </div>
  {{ label_field(form.category) }}
  {{ form.submit }}
</form>
{% endblock %}