30 lines
1.2 KiB
Twig
30 lines
1.2 KiB
Twig
{% extends 'error/layout.html.twig' %}
|
|
|
|
{% set status_code = status_code|default(404) %}
|
|
|
|
{% block title %}Seite nicht gefunden · Fehler 404{% endblock %}
|
|
{% block icon %}<i class="bi bi-signpost-split fs-3 text-info"></i>{% endblock %}
|
|
{% block heading %}Seite nicht gefunden{% endblock %}
|
|
{% block message %}Die angeforderte Seite existiert nicht oder wurde verschoben.{% endblock %}
|
|
|
|
{% block actions %}
|
|
{% if app.user and is_granted('ROLE_CHAT_USER') %}
|
|
<a class="btn btn-info" href="{{ path('chat_index') }}">
|
|
<i class="bi bi-chat-dots"></i> Zum Chat
|
|
</a>
|
|
{% endif %}
|
|
{% if app.user and is_granted('ROLE_ADMIN_AREA') %}
|
|
<a class="btn btn-outline-light" href="{{ path('admin_dashboard') }}">
|
|
<i class="bi bi-speedometer2"></i> Zum Adminbereich
|
|
</a>
|
|
{% endif %}
|
|
{% if not app.user %}
|
|
<a class="btn btn-info" href="{{ path('chat_login') }}">
|
|
<i class="bi bi-box-arrow-in-right"></i> Zur Chat-Anmeldung
|
|
</a>
|
|
<a class="btn btn-outline-light" href="{{ path('admin_login') }}">
|
|
<i class="bi bi-shield-lock"></i> Zur Admin-Anmeldung
|
|
</a>
|
|
{% endif %}
|
|
{% endblock %}
|