{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block content %}
{% plugin_buttons object %} {% if perms.dcim.change_service %} {% edit_button object %} {% endif %} {% if perms.dcim.delete_service %} {% delete_button object %} {% endif %}

{% block title %}{{ object }}{% endblock %}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
Service
Name {{ object.name }}
Parent {{ object.parent }}
Protocol {{ object.get_protocol_display }}
Ports {{ object.port_list }}
IP Addresses {% for ipaddress in object.ipaddresses.all %} {{ ipaddress }}
{% empty %} None {% endfor %}
Description {{ object.description|placeholder }}
{% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='ipam:service_list' %} {% plugin_left_page object %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}