{% extends "base.html" %} {% block content %}

Welcome to CourseFlow!

CourseFlow is open-source courseware that is with you all the way through a course.

Learn more »

{% if courses_and_descs_and_invalid_flags %}
{% for course, desc, invalid in courses_and_descs_and_invalid_flags %}

{{desc.number}} {{desc.run}}

{{desc.name}}

{% if invalid %}
The course content has not yet been validated.

Update »

{% else %}

View »

{% endif %}
{% endfor %}
{% else %} There are no courses hosted on this CourseFlow site. {% if not user.is_authenticated %} Sign in to get started. {% endif %} {% endif %} {% if user.is_staff %}
Set up new course »

{% endif %} {% endblock %}