Files
myep-team/templates/admin/teamer/crm_selections.html.twig
T

35 lines
1.2 KiB
Twig

{% extends 'admin/layout.html.twig' %}
{% block title %}Selektionsmerkmale {{ teamer }}{% endblock %}
{% block content %}
<div class="grid lg:grid-cols-3 gap-y-8 lg:gap-y-0 lg:gap-x-8">
<div>
{{ knp_menu_render(knp_menu_get('admin_teamer')) }}
</div>
<div class="lg:col-span-2">
<h1 class="text-2xl font-bold pb-8">
Selektionsmerkmale {{ teamer }}
</h1>
{% for group, attributes in teamer.crmSelections %}
<h2 class="font-bold text-lg">
{{ group }}
</h2>
{% if attributes|length %}
<ul class="pb-4">
{% for attribute in attributes %}
<li class="flex items-center space-x-2">
{{ icon('check', 'w-4 h-4') }}
<span>{{ attribute }}</span>
</li>
{% endfor %}
</ul>
{% else %}
<div class="text-sm pb-4">
-
</div>
{% endif %}
{% endfor %}
</div>
</div>
{% endblock %}