{% extends "public/content.html" %} {% block left_content %} {% include "members/partials/locker-tabs.html" with active_tab="receipts" %} {% endblock %} {% block headtitle %} My Receipts | My {{ settings.WEBSITE_CODE }} {% endblock %} {% block title %}

My Receipts

{% endblock %} {% block content %} {% if receipts %} {% for receipt in receipts %}

{{ receipt.name }}

Added: {{ receipt.created|date:"H:i d/m/Y"}}

{% if receipt.file %}

Download File

{% endif %}
{% endfor %} {% else %}

There are no receipts for your account.

{% endif %} {% endblock %}