| 1 | {% extends "FOSUserBundle::layout.html.twig" %} |
| 2 | |
| 3 | {% block title %}{{ parent() }}profile{% endblock %} |
| 4 | |
| 5 | {% block fos_user_content %} |
| 6 | {% trans_default_domain 'FOSUserBundle' %} |
| 7 | |
| 8 | <div class="row"> |
| 9 | <div class="col-xs-12 col-sm-7 col-sm-offset-5 fos_user_user_show"> |
| 10 | <p>{{ 'profile.show.email'|trans }}: {{ user.email }}</p> |
| 11 | <p>First name: {{ user.name }}</p> |
| 12 | <p>Last name: {{ user.surname }}</p> |
| 13 | {% if user.emailnotif1 %} |
| 14 | <p>Notifications enabled for any creation or update</p> |
| 15 | {% elseif user.emailnotif0 %} |
| 16 | <p>Notifications enabled on packages/usecases creations</p> |
| 17 | {% endif %} |
| 18 | </div> |
| 19 | </div> |
| 20 | |
| 21 | {% endblock fos_user_content %} |