mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
12 lines
383 B
HTML
12 lines
383 B
HTML
|
{% 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>
|