{% extends "fluid.html" %} {% load i18n %} {% block pagetitle %}{% trans "Dashboard" %}{% endblock %} {% block container_content %} {% if user.is_admin %}
Want to check the new admin interface? Go to Kalabash v2
{% endif %}

{% blocktrans with user=user.fullname trimmed %}Hello {{ user }}.{% endblocktrans %}

{% for widget in widgets.left %} {% include widget %} {% endfor %}
{% for widget in widgets.right %} {% include widget %} {% endfor %}
{% endblock container_content %}