{% extends "layout.html" %} {% block content %}

{{ collection.name }}


{{ _('UUID') }}
{{ collection.uuid }}
{{ _('Description') }}
{{ collection.description }}
{{ _('Created at') }}
{{ collection.date_created | datetime }}
{{ _('Creator') }}
{% if creator %} {{ creator.login }} {% else %} None (account deleted). {% endif %}

{% for object in collection.objects %} {% endfor %}
{{ _('Objects from this collection') }}
{{ _('id') }} {{ _('Name') }} {{ _('Validating JSON schema') }} {{ _('Organization') }} {{ _('Last updated') }}
{{object.id }} {{ object.name }} {{ object.schema.name }} {{ object.organization.name }} {{ object.last_updated | datetime }}
{% endblock %}