{% extends "base_dashboard.html" %} {% load i18n %} {% load staticfiles %} {% load dashboard_extras %} {% load firstof from future %} {% block view-name %}view-course-list{% endblock view-name %} {% block title %}{% trans "Courses" %} {{ block.super }}{% endblock title %} {% block header-text %}

{% blocktrans with username=request.user.username %}Welcome, {{ username }}!{% endblocktrans %}

{% endblock %} {% block intro-text %} {% blocktrans %}Here are the courses you currently have access to in {{ application_name }}:{% endblocktrans %} {% endblock intro-text %} {% block content %}
{% for course in courses %}
{% firstof course.name course.key|format_course_key %} {% if course.name %}
{{ course.key|format_course_key:" / " }}
{% endif %}
{% endfor %}

{% blocktrans %}New to {{ application_name }}?{% endblocktrans %}

{% captureas email_link %} {% endcaptureas %}

{% blocktrans trimmed %} Click Help in the upper-right corner to get more information about {{ application_name }}. Send us feedback at {{ email_link }}.{% endblocktrans %}

{% endblock %}