{% include 'header.twig' %}
{% if orders is empty and 'all' == status %}

{{ lang['smmspot.orders.no.order.text1'] }} {{user['username']}}, {{ lang['smmspot.orders.no.order.text2'] }}

{{ lang['smmspot.orders.no.order.text3'] }} {{ lang['smmspot.orders.no.order.text4'] }}

{% endif %}
{% for order in orders %}
{{ order['id'] }}

{{ order['service'] }}

{% if order['status'] == lang['orders.status.completed'] %}
{{ order['status'] }}
{% endif %} {% if order['status'] == lang['orders.status.inprogress'] %}
{{ order['status'] }}
{% endif %} {% if order['status'] == lang['orders.status.pending'] %}
{{ order['status'] }}
{% endif %} {% if order['status'] == lang['orders.status.partial'] %}
{{ order['status'] }}
{% endif %} {% if order['status'] == lang['orders.status.processing'] %}
{{ order['status'] }}
{% endif %} {% if order['status'] == lang['orders.status.canceled'] %}
{{ order['status'] }}
{% endif %}
{% endfor %}
{% if pagination["count"] > 1 %}
    {% if pagination["current"] != 1 %}
  • {% endif %} {% set r, l = 3, 3 %} {% if pagination['current'] == 1 %} {% set r = 7 %} {% endif %} {% if pagination['current'] == 2 %} {% set r = 5 %} {% endif %} {% if pagination['current'] >= pagination['count'] %} {% set l = 5 %} {% endif %} {% for page in 1..pagination["count"] %} {% if page >= (pagination['current']-l) and page <= (pagination['current']+r) %} {{ page }} {%endif%} {% endfor %} {% if pagination['current'] < pagination['count'] %}
  • {% endif %}
{% endif %}
{% include 'footer.twig' %}