{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% block content %}
{% trans "Policers" %}
{% if object.description %} {% endif %} {% if object.tenant %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% trans "Logical Interface Policer" %} {% checkmark object.logical_interface_policer %}
{% trans "Physical Interface Policer" %} {% checkmark object.physical_interface_policer %}
{% trans "Bandwidth Limit" %} {{ object.bandwidth_limit|placeholder }}
{% trans "Bandwidth Percent" %} {{ object.bandwidth_percent|placeholder }}
{% trans "Burst Size Limit" %} {{ object.burst_size_limit|placeholder }}
{% trans "Discard" %} {% checkmark object.discard %}
{% trans "Out of Profile" %} {% checkmark object.out_of_profile %}
{% trans "Loss Priority" %} {% badge object.get_loss_priority_display bg_color=object.get_loss_priority_color %}
{% trans "Forwarding Class" %} {% badge object.get_forwarding_class_display bg_color=object.get_forwarding_class_color %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{% include 'inc/panels/comments.html' %} {% include 'inc/panels/tags.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}