PDF-Recipes are uploadable and some basic functions are already implemented. Also minor bugfixes.
10 lines
438 B
HTML
10 lines
438 B
HTML
{% extends "base.html" %}
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
{% block app_content %}
|
|
<form action="" method="post" novalidate enctype="multipart/form-data">
|
|
{{ form.hidden_tag() }}
|
|
{{ wtf.form_field(form.pdfReceipt, class=form.pdfReceipt.render_kw["class"] or "form-control") }}
|
|
{{ wtf.form_field(form.submit, class=form.submit.render_kw["class"] or "btn btn-primary mt-3") }}
|
|
</form>
|
|
{% endblock %} |