22 lines
503 B
Twig
22 lines
503 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="center">
|
|
<h1>Bienvenue chez McDoPlus !</h1>
|
|
|
|
{% if not app.user %}
|
|
compte utilisateur c'est <code><a href="/user">ici</a></code>
|
|
{% endif %}
|
|
{% if app.user and ('Waiter' in app.user.grade or 'Chef' in app.user.grade or 'Root' in app.user.grade) %}
|
|
User roles: {{ app.user.grade }}
|
|
{% endif %}
|
|
|
|
<article>
|
|
<h3>test</h3>
|
|
<p>coucou</p>
|
|
</article>
|
|
</div>
|
|
{% endblock %}
|