{% extends "shopit/base.html" %} {% load i18n shopit_tags %} {% block page_title %}{% trans "Thank you for your purchase" %}{% endblock %} {% block content %} {% order order %} {% if customer.is_registered %} {% url 'shopit-account-order-list' as account_order_list_url %}
{% blocktrans with link=account_order_list_url|default:"#" %}Keep track of your orders here.{% endblocktrans %}
{% else %} {% url 'shopit-account-login' as login_url %}{% blocktrans with link=login_url|default:"#" %}Login to keep track of your orders.{% endblocktrans %}
{% endif %} {% endblock %}