WIP: Implement crm selections

This commit is contained in:
Björn Fromme
2023-10-11 14:35:40 +02:00
parent 7084e1528e
commit b472dab6c8
6 changed files with 103 additions and 5 deletions
@@ -11,6 +11,25 @@
<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 %}