{% extends "layout.html" %} {% load i18n display_tags currency_filters static thumbnail %} {% block extrahead %} {{ block.super }} {% endblock %} {% block title %} {% trans 'Try again' %} | {{ block.super }} {% endblock %} {% block headertext %}
{% trans "Payment canceled" %}
{% trans "Payment has been canceled, would you like to try again?" %}
{% endblock %} {% block extrastyles %} {{ block.super }} {% endblock %} {% block content %}
{% block info %}
{% if order.shipping_address %}
{% for field in order.shipping_address.ordered_active_address_fields %} {{ field }}
{% endfor %} {% if order.shipping_address.phone_number %}

{% trans "Contact" %}

{% trans "Phone" %}: {{ order.shipping_address.phone_number }} {% if order.guest_email %}
{% trans "Email" %}: {{ order.guest_email }} {% endif %}

{% endif %} {% if order.shipping_address.notes %}

{% trans "Instructions" %}

{{ order.shipping_address.notes|linebreaks }}

{% endif %}
{% else %} {% endif %}
{% if order.billing_address %}
{% for field in order.billing_address.active_address_fields %} {{ field }}
{% endfor %}
{% endif %}
  • {{ order.shipping_method }}
    {{ order.shipping_incl_tax|currency:order.currency }} {% with order.shipping_excl_tax|currency:order.currency as price_excl_tax %} {% blocktrans %}Excl. tax {{ price_excl_tax }}{% endblocktrans %} {% endwith %}
{% csrf_token %} {% block payment_method_form %}
{% include "checkout/partials/payment_method_block.html" with form=payment_method_form title=title nolabel=True id="payment_method_form" %}
{% endblock %}
{% csrf_token %}
{% endblock %}
{% block order_contents %} {% if messages %} {% for msg in messages %} {% if msg.extra_tags == "extra_checkout_warning" %}
{{ msg }}
{% endif %} {% endfor %} {% endif %} {% include "checkout/partials/try_again_lines.html" %}
{% trans "Your order" as title %} {% include "checkout/partials/try_again_totals_block.html" with title=title nohide=True id="checkouttotal" %}
{% endblock order_contents %}
{% endblock content %}