Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
34 lines
1.1 KiB
Twig
34 lines
1.1 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
</head>
|
|
<body>
|
|
<div>
|
|
{% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
|
|
{{ 'layout.logged_in_as'|trans({'%username%': app.user.username}, 'FOSUserBundle') }} |
|
|
<a href="{{ path('fos_user_security_logout') }}">
|
|
{{ 'layout.logout'|trans({}, 'FOSUserBundle') }}
|
|
</a>
|
|
{% else %}
|
|
<a href="{{ path('fos_user_security_login') }}">{{ 'layout.login'|trans({}, 'FOSUserBundle') }}</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if app.request.hasPreviousSession %}
|
|
{% for type, messages in app.session.flashbag.all() %}
|
|
{% for message in messages %}
|
|
<div class="flash-{{ type }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<div>
|
|
{% block fos_user_content %}
|
|
{% endblock fos_user_content %}
|
|
</div>
|
|
</body>
|
|
</html>
|