{% extends 'safety/settings/settings.html' %} {% block toolbar_bypass %}class="active"{%endblock%} {% block settings_content %}
{% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error|escape }} {% endfor %}
{% endif %}
{% csrf_token %}
{{form.name}} {% if form.name.errors %} {{form.name.errors|striptags}} {% else %} Specify here the bypass token name for your own reference. This token name is not used in the bypassing but is shown in traffic monitoring reports. The token name must be unique. For example, specify here the name of the user who will be using the bypass token. {%endif%}
{{form.value}} {% if form.value.errors %} {{form.value.errors|striptags}} {% else %} Specify the token value (one word, without whitespaces). The token value must be unique. The user who needs to bypass the blocked page would type this value into bypass field on the blocked page. Make it easy to remember, for example, U4Z1TE. {%endif%}
{{form.comment}} {% if form.comment.errors %} {{form.comment.errors|striptags}} {% else %} Specify the comment for your own reference. {%endif%}
{% endblock %}