Payments are now displayed at the bottom of the lists. Also, receipts can now be uploaded without necessarily providing an image of the original.
13 lines
461 B
HTML
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 %} |