{% extends 'boilerplate.html' %} {% load i18n %} {% load pycontw_tools %} {% block title %}{% trans 'Dashboard' %}{% endblock title %} {% block body-class %}dashboard{% endblock %} {% block nav %}{% include '_includes/nav/dashboard_nav.html' %}{% endblock %} {% block content %}

{% blocktrans with name=user.get_short_name|default:user.get_username %}Hi {{ name }}, welcome!{% endblocktrans %}

{% if not user.verified %} {% elif not user.is_valid_speaker %} {% endif %} {% for message in messages %} {% endfor %}
{% block main-content %}{% endblock %}
{% endblock content %}