{% extends "wagtailadmin/base.html" %}
{% load gravatar compress %}
{% load i18n %}
{% block titletag %}{% trans "Dashboard" %}{% endblock %}
{% block bodyclass %}homepage{% endblock %}
{% block extra_css %}
{% compress css %}
{% endcompress %}
{% endblock %}
{% block content %}
{% blocktrans %}Welcome to the {{ site_name }} Wagtail CMS{% endblocktrans %}
{{ user.get_full_name|default:user.username }}
{% trans "This is your dashboard on which helpful information about content you've created will be displayed." %}
{% endif %} {% endblock %}