templates/app.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %} SOFT99 - Панель администратора {% endblock %}
  3. {% block body %}
  4.     {% if app.user %}
  5.         {%
  6.             set user = {
  7.                 id: app.user.id,
  8.                 email: app.user.email,
  9.                 role: app.user.getRoles()
  10.             }
  11.         %}
  12.         {% set notice = NULL %}
  13.         {% for message in app.flashes('notice') %}
  14.             {% set notice = message %}
  15.         {% endfor %}
  16.         <div id="app">
  17.             <v-application
  18.                 :auth="{{ user|json_encode }}"
  19.                 :notice="{{ notice|json_encode }}"
  20.             />
  21.         </div>
  22.     {% endif %}
  23. {% endblock %}