{% extends 'base.html' %} {% load static %} {% load i18n %} {% block custom_head_css_js %} {% endblock %} {% block content %}
{{ object.name }}
{% trans 'Name' %}: {{ object.name }}
{% trans 'Comment' %}: {{ object.comment }}
{% trans 'Date created' %}: {{ object.date_created }}
{% trans 'Date updated' %}: {{ object.date_updated }}
{% trans 'Created by' %}: {{ object.created_by }}
{% trans 'System users' %}
{% for system_user in object.system_users.all %} {% endfor %}
{{ system_user }}
{% endblock %} {% block custom_foot_js %} {% endblock %}