{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load perms %} {% load plugins %} {% block breadcrumbs %}
  • Services
  • {{ object.parent }}
  • {{ object }}
  • {% endblock %} {% block buttons %} {% if request.user|can_change:object %} {% edit_button object %} {% endif %} {% if request.user|can_delete:object %} {% delete_button object %} {% endif %} {% endblock %} {% block content %}
    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 %}