blob: 0bc402f8454699f4d8761784f53d6f9b6225fdc4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% from 'macros.html' import label_field %}
{% extends 'base.html' %}
{% block title %}Create New 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) }}
{{ form.submit }}
</form>
{% endblock %}
|