{% extends '__layout__.html' %} {% block title %}Cryptomus Dashboard{% endblock %} {% block head %} {% endblock %} {% block content %}
Return to payment methods

Pay with Cryptomus

{% if len(UserInvoices.items) == 0 %}

No past payments

{% else %} {% for invoice in UserInvoices.items %}
{{invoice.cryptomus_invoice_id}}

{{invoice.created_at.strftime("%d/%m/%Y %H:%M:%S UTC")}}

| {{invoice.status.name}}

View Payment
{% endfor %} {% endif %}
Previous

Page {{UserInvoices.page}} of {{UserInvoices.pages}}

Next
{% endblock %}