{% extends "baseAdmin.html.twig" %} {% block title %}TecdesignAdminBundle:State:list{% endblock %} {% block body %}
{% if app.session.flashbag.peekAll|length > 0 %} {% for type, messages in app.session.flashbag.all %} {% for message in messages %}

{{ message|trans({}, domain|default('messages')) }}

{% endfor %} {% endfor %} {% endif %}

Übersicht aller Auftragszustände

{% for orderState in orderStates %} {% else %} {% endfor %}
Statusname
Hinweis
Zugeordnete Benutzerrolle
Aktionen
{{ orderState.name }} {% if orderState.hint|length >= 200 %} {{ orderState.hint|slice(0, 200) }}... {% else %} {{ orderState.hint }} {% endif %} {{ orderState.role }} {% if is_granted('ROLE_ADMIN') %}

{% endif %}
Keine Einträge vorhanden.


Hinweis: Diese Tabelle beinhaltet alle verfügbaren Auftragszustände. Bitte beachten Sie, dass die zugeordnete Benutzerrolle momentan keine Auswirkung hat.

{% endblock %}