{% 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=_('Forums Overview')) }}{% endblock %} {% block content %}

{{ posts|intcomma }} {% trans %}Posts{% endtrans %}

{{ threads|intcomma }} {% trans %}Threads{% endtrans %}


New Posts

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

{% trans count=graph_posts.total|int, total=graph_posts.total|intcomma -%}One new post found in period requested {%- pluralize -%} {{ total }} new posts found in period requested {%- endtrans %}


New Threads

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

{% trans count=graph_threads.total|int, total=graph_threads.total|intcomma -%}One new thread found in period requested {%- pluralize -%} {{ total }} new threads found in period requested {%- endtrans %}

{% endblock %} {% block javascripts %} {% endblock %}