{% extends '__layout__.html' %} {% block title %}View Payment{% endblock %} {% block head %} {% endblock %} {% block content %}
Return to payment dashboard

Invoice

ID: {{InvoiceObj.cryptomus_invoice_id}}

Invoice Details

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

Expires at: {{InvoiceObj.expires_at.strftime("%d/%m/%Y %H:%M:%S UTC")}}

Last Status Update: {{InvoiceObj.updated_at.strftime("%d/%m/%Y %H:%M:%S UTC")}}

Invoice Status: {{InvoiceObj.status.name}}

Is Finalised: {% if InvoiceObj.is_final %}Yes{% else %}No{% endif %}

Payment Details

Required Amount: {{ round( InvoiceObj.required_amount, 2 )}} {{InvoiceObj.currency}}

USD received: {{ round( InvoiceObj.paid_amount_usd, 2 )}} USD

Additional Details

{% if InvoiceObj.assigned_key == None %}

No additional details

{% else %}

Outrageous Builders Club 1 Month

Redeem this key at www.syntax.eco/giftcard-redeem or give it to a friend

{% endif %}

If you have any issues with paying, viewing or receving your item please open a billing ticket in our Discord Server

{% endblock %}