{% extends 'admin/admin_base.html.twig' %} {% import "admin/Macros/Buttons/_button.html.twig" as button %} {% set page_title = "Rabattcode" %} {% 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':'Rabattcode hinzufügen', 'href':'javascript:', 'class':'my-1 btn-success', 'attr':'data-ajax-modal data-href='~path('admin_rabattCode_new')~'' }) }} {% endblock %} {% block body %}
Position
Titel
Anzahl
Einheit
Untere Grenze
Obere Grenze
Type
Lage
Transaktionen
{% for code in rabattCodes %}
{{ loop.index }}
{{ code.title }}
{{ code.anzahl }}
{{ code.einheit }}
{{ code.untereGrenze }}
{{ code.obereGrenze }}
{% if code.type == 0 %} % {% else %} Geld {% endif %}
{% if code.isEnabled == 1 %} Aktiv {% else %} Passiv {% endif %}

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