{% extends 'layouts/base.html' %} {% load i18n %} {% load pyaa %} {% load pyaa_status %} {% load static %} {% block content %}
{% element page_header centered=True %} {% translate "message.shop-payment-success.title" %} {% endelement %}

{% trans "message.shop-payment-success.subtitle" %}

{% trans "message.shop-payment-date" %}
{{ paid_item.created_at }}

{% trans "message.shop-payment-status" %}
{{ paid_item.get_status_display }}

{% if paid_item_type == "subscription" %} {% translate "button.account-subscriptions" %} {% elif paid_item_type == "credit-purchase" %} {% translate "button.account-credit-purchases" %} {% elif paid_item_type == "product-purchase" %} {% translate "button.account-product-purchases" %} {% endif %}
{% endblock content %}