{% extends "elearning.html" %} {% block headtitle %}Dashboard - {{ block.super }}{% endblock %} {% block content %}
{% if manager and manager.get_courses %}
{% for course in manager.get_courses %} {% if course.enabled %} {% endif %} {% endfor %}
{% elif learner.get_courses %}
{% for course in learner.get_courses %} {% if course.enabled %} {% endif %} {% endfor %} {##}
{% else %} {% if learner.group %}

You aren't currently subscribed to any courses. Please contact your manager for further information.

{% else %}
Once you have purchased one or more courses, they will be displayed below.

You aren't currently subscribed to any courses.

{% endif %} {% endif %}
{% endblock %}