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

{{ _('Welcome') }} {{ user.login }}

{{ _('You are a member since') }} {{ user.created_at | datetimeformat }}.

{{ _('See the') }} {{ _('objects') }} {{ _('you already created.') }}

{{ _('Create and share a new object with one of the') }} {{ _('available schemas') }} {{ _('on the platform') }}.

{% if user.organizations | count != 0 %}

{{ _('Schemas in my organizations') }}

{% for org in current_user.organizations %}

{{ org.name }}

{% endfor %}
{% else %}
{{ _('You are in no organization.') }}

{{ _('You can contact the responsible of an') }} {{ _('organization') }} {{ _('or look for an') }} {{ _('organization with no membership restriction') }}.

{{ _('Being part of an organization is required in order to publish an object.') }}

{% endif %} {% if user.organizations.count != 0 %}
{% endif %}
{% endblock %}