{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% comment %} __author__ = "Andrea Dainese" __contact__ = "andrea@adainese.it" __copyright__ = "Copyright 2022, Andrea Dainese" __license__ = "GPLv3" {% endcomment %} {% block controls %} {% endblock controls %} {% block tabs %} {% endblock tabs %} {% block content %}
Routing table entry
Device {{ object.device.name }}
Device role {{ object.device.device_role.name }}
Next hop interface {% if object.nexthop_if %} {{ object.nexthop_if.name }} {% endif %}
Next hop IP Address {{ object.nexthop_ip }}
Route type (protocol) {{ object.protocol }}
Route metric {{ object.metric }}
Route distance {{ object.distance }}
VRF {{ object.vrf }}
{% include "inc/panels/custom_fields.html" %}
{% include "inc/panels/tags.html" %} {% include "inc/panels/comments.html" %}
{% endblock content %}