{% extends 'base.html' %} {% load render_table from django_tables2 %} {% load static %} {% block header_button %} {% if request.user.is_superuser %}
{% endif %} {% endblock %} {% block main %} {% load guardian_tags %} {% get_obj_perms request.user for instance as "instance_perms" %}

Details

Service image
{% render_table operations_table %}
{% if instance.service.external_support_url is not None and instance.service.external_support_url != '' %}

Supports for this service are redirected to an external tool

Open new support {% else %} Open new support {% render_table supports_table %} {% endif %}
{% if request.user.is_superuser %}
{{ instance.spec | pretty_json }}
{% endif %}
{{ instance.user_spec | pretty_json }}
{% render_table requests_table %}
Manage users role {% with user_roles as roles %} {% render_table users_table %} {% endwith %}
Manage team role {% with team_roles as roles %} {% render_table teams_table %} {% endwith %}
{% endblock %} {% block custom_script %} {% endblock %}