{% extends "base.html" %} {% load static i18n wagtailcore_tags wagtailimages_tags %} {% block title %}{{ page.title }}{% endblock %} {% block body_class %}template-homepage{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block content_class %}prose{% endblock content_class %} {% block content %}

{% trans "Courses" %} » {{ page.title }}

{% if page.course_image %} {% image page.course_image original alt=page.title class="w-full h-auto rounded-lg mb-4" %} {% endif %}

{{ page.description }}

{{ page.body|richtext }} {% if user_has_access %} {% if user_purchase_id %} {% trans "Refund Purchase" %} {% endif %}

{% trans "Modules" %}

{% elif not user.is_authenticated %} {# If the user is not authenticated, we can prompt them to log in or sign up. #}

{% trans "You need to be logged in to access this course. Please log in or sign up to view the modules." %}

{% trans "Login" %} {% trans "Sign Up" %}
{% else %}

{% trans "You don't have access to this course. Please purchase it to view the modules." %}

{% trans "Purchase Course" %}
{% endif %} {% endblock content %}