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

Dashboard

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

{% include "stats.html" %}
{% include "publish.html" %} {% include "send_email.html" %}
{% if user.is_admin() %}
Administration
{% include "subscribers/list.html" %} {% include "users/list.html" %} {% include "users/form.html" %} {% include "posts/list.html" %} {% include "comments/list.html" %}
{% endif %}
{% endblock %}