{% extends 'baseadmin.html.twig' %} {% import "_modules/bsmacros.html.twig" as bs %} {% block title %}{{ parent() }} - Orders{% endblock %} {% block content %} {# table of orders [created_at, last_updated_at, status, type, uuid, user (get by steamid)] #}
Operations in order {{ order.uuid }}
{% for operation in order.operations %} {% endfor %}
UUID Type Event Content Status
{{ operation.uuid }} {{ operation.type }} {{ operation.event }} {{ operation.content }} {% if operation.complete %} {% else %} {% endif %}
{% endblock %}