{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard

Connected as {{ user.username }} {% if user.is_admin() %} admin {% endif %}

{% if user.is_admin() %}

Administration

{% include "stats.html" %} {% include "subscribers/list.html" %}
{% endif %}
{% include "publish.html" %} {% include "send_email.html" %} {% include "change_password.html" %}
{% endblock %}