Files
myep-team/templates/admin/system/job_profile/index.html.twig
T

57 lines
2.0 KiB
Twig

{% extends 'admin/layout.html.twig' %}
{% block title %}Einstellungen - Jobprofile{% endblock %}
{% block content %}
<h1 class="text-2xl font-bold pb-8">
Job-Profile
</h1>
<div class="data-table-wrapper">
<div class="data-table-wrapper__inner">
<table class="data-table">
<thead>
<tr>
<th>
Bezeichnung
</th>
<th>
Fortbildung
</th>
<th>
Lizenzen
</th>
<th></th>
</tr>
</thead>
<tbody>
{% for jobProfile in jobProfiles %}
<tr>
<td>
{{ jobProfile.name }}
</td>
<td>
{{ jobProfile.requiredTraining|default('-') }}
</td>
<td>
{{ jobProfile.requiredLicenses|join(', ') }}
</td>
<td>
<div class="flex items-center space-x-2 justify-end">
</div>
</td>
</tr>
{% else %}
<tr>
<td colspan="4">
<div class="text-sm">Keine Daten...</div>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<a href="{{ path('app_admin_system_job_profile_create') }}" class="btn">
Neu
</a>
{% endblock %}