{% extends "base.html" %} {% block title %}{{ _('Admin · Transactions') }}{% endblock %} {% block content %} {% include "admin/_nav.html" %}
{{ _('All-time revenue (succeeded): $%(amount)s', amount='%.2f'|format(total_cents / 100)) }}
| {{ _('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.') }} | |||||