blob: 1ddad4ade9720a066a44ea6b521382d1c5a310f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "layout.jinja" %}
{% from "macros.jinja" import render_form %}
{% block heading %}
Füge neue konstante Ausgabe hinzu
{% endblock %}
{% block content %}
<form name="add_const_expense" method="post" action="{{ url_for(".add") }}">
{{ render_form(form) }}
<input type="submit" name="changeB">
</form>
{% endblock %}
|