{% extends "base.html" %} {% block title %}{{ _('My billing') }}{% endblock %} {% block content %}
| {{ b.listing.title[:50] }} | {{ b.type }} | {{ _('Expires') }} {{ b.expires_at.strftime('%b %d, %Y') }} |
{{ _('No transactions yet.') }}
{% else %}| {{ _('Date') }} | {{ _('Type') }} | {{ _('Amount') }} | {{ _('Status') }} |
|---|---|---|---|
| {{ t.created_at.strftime('%b %d, %Y') }} | {{ t.type }} | ${{ "%.2f"|format(t.amount_cents / 100) }} | {{ t.status }} |