diff --git a/netbox/templates/users/group.html b/netbox/templates/users/group.html index dd4b1aa8a..e4eee0812 100644 --- a/netbox/templates/users/group.html +++ b/netbox/templates/users/group.html @@ -5,11 +5,13 @@ {% block title %}{% trans "Group" %} {{ object.name }}{% endblock %} +{% block subtitle %}{% endblock %} + {% block content %}
{% trans "Name" %} | {{ object.name }} |
---|---|
{% trans "Description" %} | +{{ object.description|placeholder }} | +
{% trans "Enabled" %} | +{% checkmark object.enabled %} | +
{% trans "View" %} | +{% checkmark object.can_view %} | +
---|---|
{% trans "Add" %} | +{% checkmark object.can_add %} | +
{% trans "Change" %} | +{% checkmark object.can_change %} | +
{% trans "Delete" %} | +{% checkmark object.can_delete %} | +
{{ object.constraints|json }}+ {% else %} + None + {% endif %} +
{% trans "Full Name" %} | -- {% if object.first_name or object.last_name %} - {{ object.first_name }} {{ object.last_name }} - {% else %} - {{ ''|placeholder }} - {% endif %} - | +{{ object.get_full_name|placeholder }} | |
---|---|---|---|
{% trans "Email" %} | @@ -35,13 +31,17 @@{{ object.date_joined|annotated_date }} | ||
{% trans "Superuser" %} | -{% checkmark object.is_superuser %} | +{% trans "Active" %} | +{% checkmark object.active %} |
{% trans "Admin Access" %} | +{% trans "Staff" %} | {% checkmark object.is_staff %} | |
{% trans "Superuser" %} | +{% checkmark object.is_superuser %} | +