{% extends 'accounts/base.html' %} {% block title %}Dashboard{% endblock %} {% block content %}

Welcome to your dashboard, {{ request.user.firstname|default:request.user.email }}

You have access to the following apps:

{% for category, pages in grouped_pages.items %} {% for page in pages %} {{ page.get_label }} {% endfor %} {% endfor %}
{% endblock %}