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

{{ schema.name }}


{{ _('Description') }}
{{ schema.description }}
{{ _('Provided by') }}


{% for object in objects %} {% endfor %}
{{ _('Objects validated by the schema') }}
# {{ _('Name') }} {{ _('Organization') }} {{ _('Visibility') }} {{ _('Last updated') }} {{ _('Edit') }} {{ _('Definition') }} {{ _('Object') }} {{ _('Delete') }}
{{ loop.index }} {{ object.name }} {{ object.organization.name }} {{ _('Public') if object.is_public else _('Private') }} {{ object.last_updated | datetime }}


{% endblock %}