{% extends 'lara_django_base/lara_base.html' %} {% load static %} {% block toolbar %}

{{ section_title }}

{% endblock %} {% block content %}

{% if object.name_display %}{{ object.name_display }} {% else %} {{ object.name_full }} {% endif %} {% if object.data_type %}({{ object.data_type }}) {% endif %}

Description: {{ object.description }}

  • Name: {{ object.name }}

  • Description: {{ object.description }}

  • Created: {{ object.datetime_created }}

  • Entities: {% for entity in object.users.all %} {{ entity.name_full }} ({{ entity.acronym }}) {% if not forloop.last %},{% endif %} {% endfor %}

  • {% if object.groups.all %}
  • Groups: {% for group in object.groups.all %} {{ group.name }} {% endfor %}

  • {% endif %}
{% if object.metadata %}
{{ object.metadata }}
{% else %}

No metadata available

{% endif %}
{% endblock %}