{% extends 'generic/object.html' %}
{% load humanize %}
{% load helpers %}
{% load plugins %}
{% block content %}
| Name |
{{object.name}}
|
| Description |
{{object.description}}
|
| VRF |
{% if object.vrf %}
{{ object.vrf }}
{% else %}
Global
{% endif %}
|
| Prefix |
{{ object.prefix }}
|
| Next Hop |
{{ object.next_hop }}
|
| Name |
{{ object.name|placeholder }}
|
| Metric |
{{ object.metric }}
|
| Permanent |
{{ object.permanent }}
|
{% plugin_left_page object %}
{% include 'inc/panels/related_objects.html' %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/comments.html' %}
{% include 'inc/panels/tags.html' %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}