{% extends 'cubane/ishop/pages/account/base.html' %} {% load shop_tags %} {% block meta_title %}{{ status.capitalize }} Orders{% endblock %} {% block title %}{{ status.capitalize }} Orders{% endblock %} {% block account_breadcrumb %} {% shop_breadcrumb 'Orders' %} {% endblock %} {% block processing_orders %}{% if status == 'processing' %}active{% endif %}{% endblock %} {% block complete_orders %}{% if not status == 'processing' %}active{% endif %}{% endblock %} {% block content %}
{% if status == 'processing' %}Processing{% else %}Complete{% endif %} Orders
{% if status == 'processing' %}
Your orders will be listed here until being shipped, they will then be moved to complete orders.
{% endif %} {% if orders %} {% include 'cubane/ishop/elements/account/orders.html' %} {% else %}
You have no {{ status }} orders.
{% endif %} {% endblock %}