{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% block page_title %}{% trans "Order Not Found" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}

{% trans "This order is no longer available" %}

{% if order_type == "buy" %} {% blocktrans with order_id=order_id %}The buy order #{{ order_id }} is not available. It may have been completed, cancelled, deleted, or you may not have access to it.{% endblocktrans %} {% else %} {% blocktrans with order_id=order_id %}The sell order #{{ order_id }} is not available. It may have been completed, cancelled, deleted, or you may not have access to it.{% endblocktrans %} {% endif %}

{% endblock content %}