This commit is contained in:
team 1
2026-05-12 08:57:57 +02:00
parent 03d4a1d7c3
commit 0d55c0a439
6 changed files with 769 additions and 7 deletions

View File

@@ -4,15 +4,24 @@
{% block body %}
<div class="d-flex justify-content-between align-items-center mb-4">
<div class="d-flex justify-content-between align-items-center mb-4 flex-wrap gap-2">
<h1 class="h3 mb-0"><i class="bi bi-rocket-takeoff-fill"></i> KI Modell-Generierung</h1>
{% if is_granted('ROLE_SUPER_ADMIN') %}
<a href="{{ path('admin_model_config_create') }}"
class="btn btn-sm btn-outline-info">
Neue Konfiguration
</a>
{% endif %}
<div class="d-flex flex-wrap gap-2">
{% if is_granted('ROLE_KNOWLEDGE_ADMIN') %}
<a href="{{ path('admin_evals_index') }}"
class="btn btn-sm btn-outline-warning">
Eval Suite
</a>
{% endif %}
{% if is_granted('ROLE_SUPER_ADMIN') %}
<a href="{{ path('admin_model_config_create') }}"
class="btn btn-sm btn-outline-info">
Neue Konfiguration
</a>
{% endif %}
</div>
</div>
{# ========================================================= #}