1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00
ihatemoney_ynh/budget/templates/bill_form.html

12 lines
383 B
HTML
Raw Normal View History

{% import "forms.html" as forms %}
<div class="uniForm">
<form action="{{ url_for('add_bill', project_id=project.id) }}" method="post" class=uniForm">
{{ form.hidden_tag() }}
{{ forms.input(form.what) }}
{{ forms.input(form.payer) }}
{{ forms.input(form.amount) }}
{{ forms.input(form.payed_for, multiple=True) }}
<p>{{ form.submit }}</p>
</form>
</div>