{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% block content %}
{% trans "Interface Object" %}
{% trans "Name" %} {{ object.name }}
{% trans "Direction" %} {{ object.get_direction_display }}
{% trans "Device" %} {% if object.device %}{{ object.device }}{% else %}—{% endif %}
{% trans "Interface" %} {% if object.interface %}{{ object.interface }}{% else %}—{% endif %}
{% trans "Description" %} {{ object.description|placeholder }}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% endblock %}