templates/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.   {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
  4.     {% if newApplicationForm is defined %}
  5.       {{ form(newApplicationForm) }}
  6.     {% endif %}
  7.     {% if mystemForm is defined %}
  8.       {{ form(mystemForm) }}
  9.     {% endif %}
  10.     {% if applications is defined %}
  11.       <table class="hero col_25 table" >
  12.         <tr>
  13.           <th>Имя</th>
  14.           <th>Ключ</th>
  15.         </tr>
  16.         {% for application in applications %}
  17.           <tr>
  18.             <td>
  19.               {{ application.name }}
  20.             </td>
  21.             <td>
  22.               {{ application.key }}
  23.             </td>
  24.           </tr>
  25.         {% endfor %}
  26.       </table>
  27.     {% endif %}
  28.   {% endif %}
  29. {% endblock %}