{% extends 'admin/admin_base.html.twig' %} {% import "admin/Macros/Buttons/_button.html.twig" as button %} {% set page_title = "Exams" %} {% block title %}{{ page_title }}{% endblock %} {% block stylesheets %} {% endblock %} {% block breadcrumb %} {# {% set fields = [ { 'name': page_title }] %} {% include 'admin/Common/_breadcrumb.html.twig' %}#} {% endblock %} {% block page_buttons %} {{ button.button_new({ 'text':'Prüfung hinzufügen', 'href':'javascript:', 'class':'my-1', 'attr':'data-ajax-modal data-href='~path('admin_exam_new',{'site':siteName[0].id})~'' }) }} {% endblock %} {% block body %}
{% for exam in exams %} {% endfor %}
Site Lage Verfahren
{{ exam.name }} {% if exam.isEnabled == 1 %} Aktiv {% else %} Passiv {% endif %}
{% endblock %} {% block head_javascripts %} {% include 'admin/Common/_datatable_all_js.html.twig' %} {% endblock %}