{% extends 'cjkcms/pages/web_page.html' %} {% load wagtailcore_tags wagtailroutablepage_tags wagtailimages_tags static %} {% block content_body %}
{% user_can_see course user 'SECURITY_COURSE' as can_see_course %} {% if can_see_course %} {% include 'lxp/snippets/course_summary_block.html' with use_description=True %} {% else %} {% include 'lxp/snippets/no_access_to_course.html' %} {% endif %} {% user_can_see course user 'SECURITY_LIST' as can_see_list %} {% if can_see_list %} {% include 'lxp/snippets/modules_and_activities_block.html' %} {% endif %}

Return to Course List

{% if page.tags.all.count %}

Tags

{% for tag in page.tags.all %} {{ tag }} {% endfor %}
{% endif %} {% with topics=page.topics.all %} {% if topics %}

Learning paths

{% for topic in topics %} {{ topic.name }} {% endfor %}
{% endif %} {% endwith %}
{% endblock content_body %} {% block custom_assets %} {% endblock custom_assets %}