{% extends 'base/layout.html' %} {% load render_table from django_tables2 %} {% load nb_buttons %} {% load static %} {% load helpers %} {% load nb_helpers %} {% load custom_links %} {% load plugins %} {% block header %}
{# Breadcrumbs #} {# Object identifier #}
{% block object_identifier %} plugins.{{ object|meta:"app_label" }}.{{ object|meta:"model_name" }}:{{ object.pk }} {% if object.slug %}({{ object.slug }}){% endif %} {% endblock object_identifier %}
{{ block.super }} {% endblock %} {% block title %}{{ object }}{% endblock %} {% block controls %} {# Clone/Edit/Delete Buttons #}
{% plugin_buttons object %} {# Extra buttons #} {% if permissions.add %} {% edit_button object %} {% clone_button object %} {% endif %} {% if permissions.delete %} {% delete_button object %} {% endif %}
{% endblock controls %} {% block tabs %} {% endblock %} {% block content %}
Service
Name {{ object.name }}
Backup Profile {{ object.backup_profile }}
Clients
{% render_table tenant_table %}
Comments

{{ object.comments }}

Vulnerability assessments
{% render_table vuln_table %}
{% endblock %} {% block modals %} {% include 'inc/htmx_modal.html' %} {% endblock modals %}