{% extends 'safety/policy.html' %} {% block toolbar_bandwidth %}class="active"{%endblock%} {% block policy_content %}
{% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error|escape }} {% endfor %}
{% endif %}
{% csrf_token %}
{{form.bandwidth_policy_limit}}
{% if form.bandwidth_policy_limit.errors %} {{form.bandwidth_policy_limit.errors|striptags}} {% else %} Specify the highest number of kilobytes per second that all members of this policy can consume together. Default value is 1024 Kb. {%endif%}
{{form.bandwidth_member_limit}}
{% if form.bandwidth_member_limit.errors %} {{form.bandwidth_member_limit.errors|striptags}} {% else %} Specify the highest number of kilobytes per second that each individual member of this policy can consume by himself. Must be less than or equal to total limit. Default value is 100 Kb. {%endif%}
{% endblock %}