Lunaresk b57dbba5d6 minor: display payments on overview
Payments are now displayed at the bottom of the lists.
Also, receipts can now be uploaded without necessarily
providing an image of the original.
2024-02-18 17:37:06 +01:00

13 lines
461 B
HTML

{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% from 'utils/form/_render_field.html' import render_field %}
{% block app_content %}
<form action="" method="post" novalidate enctype="multipart/form-data">
{{ render_field(form.hidden_tag) }}
{{ render_field(form.user) }}
{{ render_field(form.date) }}
{{ render_field(form.pdfReceipt) }}
{{ render_field(form.submit) }}
</form>
{% endblock %}