{% extends "base.html" %} {% block title %}{{ _('Admin · Transactions') }}{% endblock %} {% block content %} {% include "admin/_nav.html" %}

{{ _('Transactions') }}

{{ _('All-time revenue (succeeded): $%(amount)s', amount='%.2f'|format(total_cents / 100)) }}

{% if filters.get('type') or filters.get('status') %}{{ _('Clear') }}{% endif %}
{% for txn in pagination.items %} {% else %} {% endfor %}
{{ _('Date') }} {{ _('User') }} {{ _('Type') }} {{ _('Amount') }} {{ _('Status') }} {{ _('Stripe ID') }}
{{ txn.created_at.strftime('%Y-%m-%d') }} {{ txn.user.display_name }} {{ txn.type }} ${{ '%.2f'|format(txn.amount_cents / 100) }} {{ txn.status }} {{ txn.stripe_object_id or '—' }}
{{ _('No transactions.') }}
{% if pagination.has_prev %}← {{ _('Prev') }}{% endif %} {{ _('Page %(p)s of %(t)s', p=pagination.page, t=pagination.pages) }} {% if pagination.has_next %}{{ _('Next') }} →{% endif %}
{% endblock %}