{% extends "wagtailadmin/home.html" %} {% load wagtailadmin_tags i18n %} {% block content %}

{{ user|user_display_name }}

{% comment %} is_superuser also covers Wagtail admins {% endcomment %} {% if request.user.is_superuser %}
{% csrf_token %}
{% endif %}
{% if panels %} {% for panel in panels %} {{ panel.render }} {% endfor %} {% else %}

{% trans "This is your dashboard on which helpful information about content you've created will be displayed." %}

{% endif %} {% endblock %} {% block extra_js %} {{ block.super }} {% include "wagtailadmin/environment_banner.html" %} {% endblock %}