{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load i18n %} {% load perms %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% if object.application %}
| {% trans "Application" %} | {{ object.application|linkify|placeholder }} |
|---|---|
| {% trans "Parent" %} | {{ object.parent|linkify|placeholder }} |
| {% trans "Name" %} | {{ object.name }} |
| {% trans "Slug" %} | {{ object.slug }} |
| {% trans "Tenant" %} | {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
| {% trans "Status" %} | {% badge object.inherited_status_display bg_color=object.get_status_color %} |