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

{{ _('Dashboard') }}

{{ _('Active users') }}

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

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

{{ _('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 }}
{% endblock %}