{% extends 'frontend/clock/default.html.twig' %} {% block body %}
{% if is_granted('ROLE_ADMIN') %}
{% for flash_message in app.session.flashbag.get('notice') %}
{{ flash_message }}
{% endfor %}

DISPOSITIVOS Y SEGURIDAD

{% if devices|length > 0 %} {% endif %}
Tipo de filtro info Setting filtro
{% if app_twig.getSetting('tokenFiltred') not in [1,'1','true','on'] %} Activar filtro Dispositivo {% else %} Desactivar filtro Dispositivo {% endif %} ¿Cual de los seguiente es el actual disposivito? {% if app_twig.getSetting('tokenFiltred') in [1,'1','true','on'] %} {% for device in devices %} {{ device.name }} {% endfor %} {% endif %}
{% if app_twig.getSetting('ipFiltred') not in [1,'true','on'] %} Activar filtro por IP {% else %} Desactivar filtro por IP {% endif %} recuerda de añadir los dispositivos disponibles fuera de esta red {% if app_twig.getSetting('ipFiltred') in [1,'true','on'] %} IP ACTUAL [{{ app.request.server.get('REMOTE_ADDR') }}] {% else %} {{ app.request.server.get('REMOTE_ADDR') }} {% endif %}
{% endif %}
{% endblock %} {% block stylesheets %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}