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

{{ _('Dashboard') }}

{{ _('Key figures') }}

  • {{ _('Number of objects') }}: {{nb_objects}}
  • {{ _('Number of schemas') }}: {{nb_schemas}}
  • {{ _('Number of collections') }}: {{nb_collections}}
  • {{ _('Number of organizations') }}: {{nb_organizations}}
  • {{ _('Number of users') }}: {{nb_users}}

{{ _('Active users') }}

{{ _('List of users connected during the last week.') }}

{% include "./admin/template_responsive_table_users.html" %}

{{ _('Go to the') }} {{ _('users management page') }}.

{{ _('New and updated objects') }}

{{ _('Updates since the last 4 weeks.') }}

{% for object in OBJECTS %} {% endfor %}
{{ _('id') }} {{ _('Name') }} {{ _('Organization') }} {{ _('Owner') }} {{ _('Last updated') }}
{{object.id }} {{ object.name }} {{ object.organization.name }} {{ object.creator.login }} {{ object.last_updated | datetime }}

{{ _('New and updated schemas') }}

{{ _('Updates since the last 4 weeks.') }}

{% for schema in SCHEMAS %} {% endfor %}
{{ _('id') }} {{ _('Name') }} {{ _('Organization') }} {{ _('Owner') }} {{ _('Last updated') }}
{{schema.id }} {{ schema.name }} {{ schema.organization.name }} {{ schema.creator.login }} {{ schema.last_updated | datetime }}

{{ _('New and updated collections') }}

{{ _('Updates since the last 4 weeks.') }}

{% for collection in COLLECTIONS %} {% endfor %}
{{ _('id') }} {{ _('Name') }} {{ _('Last updated') }}
{{collection.id }} {{ collection.name }} {{ collection.last_updated | datetime }}
{% endblock %}