{% extends "layout.html" %} {% block content %}
{{ _('Name of the schema') }}
{{ schema.name }}
{{ _('Description') }}
{{ schema.description }}
{{ _('Provided by') }}


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