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

{{ organization.name }}

{{ _('Description') }}
{{ organization.description }}
{{ _('Website') }}

{% for object in organization.objects if object.is_public %} {% endfor %}
{{ _('Shared JSON objects') }}
# {{ _('Name') }} {{ _('Last updated') }}
{{ loop.index }} {{ object.name }} {{ object.last_updated | datetime }}



{% for schema in organization.schemas %} {% endfor %}
{{ _('Shared JSON schemas') }}
# {{ _('Name') }} {{ _('# of objects validated by the schema') }} {{ _('Last updated') }}
{{ loop.index }} {{ schema.name }} {{ schema.objects.count() }} {{ schema.last_updated | datetime }}
{% endblock %}