aboutsummaryrefslogtreecommitdiffstats
path: root/src/expense/templates/tracker/category.html
blob: 8d4b98edbf6232a54400cf57a51c7f1d8b733ccc (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 title %}Manage Category{% endblock %}

{% block content %}
<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 %}