Pending Receipts

{% if not receipts %}

No pending receipts!

{% else %}

The following receipts are pending approval:

{% for receipt in receipts %} {% endfor %}
Date Description Amount Comment Action
{{ receipt.date|safe }} {{ receipt.description|safe }} {{ receipt.amount|safe }} {{ receipt.comment|safe }} {% if request.user == receipt.manager %} Approve Receipt {% else %} Set Comment {% endif %}
{% endif %}
{% csrf_token %}