{% extends "layout.html" %} {% block head %} {{ super() }} {% endblock %} {% block content %}

{{ json_object.name }}

{% if current_user.is_authenticated %} {% if current_user.id == json_object.creator_id %} {% if json_object.is_locked %} {% else %} {% endif %} {% endif %} {% endif %} {% if uuid %} {% endif %}

{{ _('Description') }}
{{ json_object.description }}
{{ _('Owning organization') }}
{{ _('Validating JSON schema') }}
{{ _('Creator') }}
{% if json_object.creator %} {{ json_object.creator.login }} {% else %} None (account deleted). {% endif %}
{{ _('License') }}
{{ json_object.licenses | join(', ') }}
{% if current_user.is_authenticated and json_object.is_locked and json_object.creator_id != current_user.id %}
{{ _('The edition of this object is restricted to its creator.') }}
{% endif %}

{{ _('Related objects') }}

{{ _('Definition of the object') }}
{{ json_object_pretty }}
{% endblock %}