{% extends "wagtailadmin/base.html" %} {% load gravatar compress %} {% block titletag %}Dashboard{% endblock %} {% block bodyclass %}homepage{% endblock %} {% block extra_css %} {% compress css %} {% endcompress %} {% endblock %} {% block content %}
{% if user.email %}
{% endif %}

Welcome to the Verdant CMS for {{ site_name }}

{{ user.get_full_name|default:user.username }}

{% if panels %} {% for panel in panels %} {{ panel.render }} {% endfor %} {% else %}

This is your dashboard on which helpful information about content you've created will be displayed.

{% endif %} {% endblock %}