{% extends '_base.html' %} {% load helpers %} {% block content %}
{% if perms.dcim.change_service %}
Edit this service
{% endif %}

{% block title %}{{ service }}{% endblock %}

{% include 'inc/created_updated.html' with obj=service %}
Service
Name {{ service.name }}
Parent {{ service.parent }}
Protocol {{ service.get_protocol_display }}
Port {{ service.port }}
IP Addresses {% for ipaddress in service.ipaddresses.all %} {{ ipaddress }}
{% empty %} None {% endfor %}
Description {{ service.description|placeholder }}
{% include 'inc/custom_fields_panel.html' with obj=service %} {% include 'extras/inc/tags_panel.html' with tags=service.tags.all url='ipam:service_list' %}
{% endblock %}