{% extends "courses/base-course.html" %} {% load i18n %} {% load dashboard_extras %} {% block view-name %}view-course-home view-dashboard{% endblock view-name %} {% block lens_navigation %} {# This is a simplified version of lens-navigation.html. #} {# Translators: Application here refers to the web site/application being used (e.g. the dashboard). #} {% endblock %} {% block child_content %}
{% for column in table_items %}
{{ column.heading }}
{{ column.translated_name }}
{% for item in column.items %}
{% captureas report_url %}{% url item.view course_id=course_id %}{{ item.fragment }}{% endcaptureas %}
{% endfor %}
{% endfor %}
{% if course_overview or external_course_tools %}

{% if course_overview %}

{% trans "Basic Course Information" %}

{% for label, value in course_overview %} {% endfor %} {% endif %}
{% if external_course_tools %}
{# Translators: This title describes a list of links to outside tools for this course. #}

{% trans "External Tools" %}

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