{% 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 {% if service.description %} {{ service.description }} {% else %} N/A {% endif %}
{% with service.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
{% endblock %}