{% extends "coachreports/base.html" %} {% load i18n %} {% load kalite_staticfiles %} {% load my_filters %} {% block coachreports_active %}active{% endblock coachreports_active %} {% block title %}{% trans "Store Transactions" %} {{ block.super }}{% endblock title %} {% block headcss %}{{ block.super }} {% endblock headcss %} {% block content %} {% block navbar_title %}

Store transactions for {{ student.get_name }} ({{ student.username }})

{% endblock navbar_title %}
{% if not transactions %}

{% trans "This user has no store transactions." %}

{% else %} {% for t in transactions %} {% endfor %}
{% trans "Date Purchased" %} {% trans "Item" %} {% trans "Description" %} {% trans "Cost" %} {% trans "Unit ID" %}
{{ t.purchased_at|date:"SHORT_DATE_FORMAT" }} {{ t.item.title }} {{ t.item.description|truncatechars:30 }} {{ t.value }} {{ t.context_id }}
{% endif %}
{% endblock content %}