{% extends "site_base.html" %} {% load bootstrap_tags %} {% load i18n %} {% block head_title %}{% trans "Receipt Upload "%}{% endblock %} {% block body_id %}{% trans "receipt_upload" %}{% endblock %} {% block page_title %}{% trans "Receipt Application" %}{% endblock %} {% block body %} {% if form.errors %}

{% trans "There were errors in your form, please correct them and submit again." %}

{% endif %}
{% csrf_token %} {% if form.errors and not form.non_field_errors %}
{% blocktrans count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
{% endif %} {{ form|as_bootstrap }}

{% trans "Your previously uploaded receipts:" %}

{% for receipt in receipts %} {% endfor %}
{% trans "Description " %} {% trans "Amount " %}
{{ receipt.description }} {{ receipt.amount }}
{% endblock %}