{% extends "base.html" %} {% load i18n %} {% block subtitle %} {% trans 'Welcome' %} {{ user.first_name }} {{ user.last_name }} {% endblock %} {% block main %}

{% if user.is_staff %} {% trans "On this site, you can organise your training content." %} {% else %} {% trans "On this site, you can grab your training content." %} {% endif %} {% trans "For more information about this site, please read the documentation." %}

{% endblock %}