{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% block content %}
{% trans "NSM Object Type" %}
{% trans "Name" %}{{ object.name }}
{% trans "Display name" %}{{ object.display_name }}
{% trans "Slug" %}{{ object.slug }}
{% trans "Group" %}{{ object.group_name|placeholder }}
{% trans "Description" %}{{ object.description|placeholder }}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% trans "Fields" %}
{% include 'htmx/table.html' with table=fields_table %}
{% trans "Objects" %}
{% include 'htmx/table.html' with table=objects_table %}
{% endblock %}