WIP: Implement crm selections
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user