{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% load render_table from django_tables2 %} {% 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 %}
{% if device_assignments_table.rows|length == 1 %}

{% trans "Device Assignment" %}

{% else %}

{% trans "Device Assignments" %}

{% endif %}
{% render_table device_assignments_table 'inc/table.html' %}
{% if virtual_device_assignments_table.rows|length == 1 %}

{% trans "Virtual Device Context Assignment" %}

{% else %}

{% trans "Virtual Device Context Assignments" %}

{% endif %}
{% render_table virtual_device_assignments_table 'inc/table.html' %}
{% if virtual_machine_assignments_table.rows|length == 1 %}

{% trans "Virtual Machine Assignment" %}

{% else %}

{% trans "Virtual Machine Assignments" %}

{% endif %}
{% render_table virtual_machine_assignments_table 'inc/table.html' %}
{% 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 %}