{% extends "admin/layout.html" %} {% load i18n %} {% load humanize %} {% load url from future %} {% from "admin/macros.html" import page_title %} {% from "admin/overview/plot.html" import draw_plot_tooltips, draw_plot with context %} {% block title %}{{ page_title(title=_('Users Overview')) }}{% endblock %} {% block content %}

13 user accounts are awaiting activation.

{% trans %}Click here to go to inactive users list.{% endtrans %}

User Registrations

{{ draw_plot_tooltips('graph-users', graph) }}
{{ graph.start|date }}
{{ graph.end|date(graph.format) }}

{% trans count=graph.total|int, total=graph.total|intcomma -%}One registration found in period requested {%- pluralize -%} {{ total }} registrations found in period requested {%- endtrans %}


{% trans %}Staff Online{% endtrans %} {{ staff|length|intcomma }}

{% if staff %}
{% for session in staff %}
{{ session.user.username }}
{% endfor %}
{% else %}

{% trans %}No staff members are currently browsing forums.{% endtrans %}

{% endif %} {% endblock %} {% block javascripts %} {% endblock %} {% macro popover_title(session) -%}
{{ session.user.username }}
{%- endmacro %} {% macro popover_content(session) -%} {% trans last_action=session.last|timesince, ip=session.ip %}{{ last_action }} ago from {{ ip }}{% endtrans %}

{{ session.agent }}

{%- endmacro %}