Files
netslim-blog/templates/Kernel/partials/_admin_nav.twig
2026-03-20 22:16:20 +01:00

15 lines
568 B
Twig
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<nav class="admin-nav">
<a href="/admin">Vue densemble</a>
{% if session.role is defined and session.role in ['admin', 'editor'] %}
| <a href="/admin/posts">Articles</a>
| <a href="/admin/media">Médias</a>
| <a href="/admin/categories">Taxonomie</a>
{% endif %}
{% if session.role is defined and session.role == 'admin' %}
| <a href="/admin/settings">Réglages</a>
| <a href="/admin/audit-log">Audit</a>
| <a href="/admin/notifications">Notifications</a>
| <a href="/admin/users">Utilisateurs</a>
{% endif %}
</nav>