{% extends 'admin/admin_base.html.twig' %} {% import "admin/Macros/Buttons/_button.html.twig" as button %} {% set page_title = "Kurse" %} {% 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 %} {% endblock %} {% block body %}

Kurse


Position
Logo
Name
Firma
Photo
x-coord
y-coord
Telefon
Link
Lage
Transaktionen
{% for kurse in kurses %} {% if kurse.kurseId|length > 0 %} {% set kurse = kurse.kurseId[0] %} {% endif %}
{{ loop.index }}
{{ kurse.name }}
{{ kurse.firma }}
{{ kurse.xCoord }}
{{ kurse.yCoord }}
{{ kurse.telefon|default }}
{{ kurse.link|default }}
{# {% if kurse.isEnabled == 1 %} Aktiv {% else %} Passiv {% endif %}#}
{% set ka = getKurseAusstehend(kurse.id) %} {% if ka > 0 %} {% endif %} {# #}

{% endfor %}
{% endblock %} {% block head_javascripts %} {% include 'admin/Common/_datatable_all_js.html.twig' %} {% endblock %}