{% extends "www/cohorts/base.html" %} {% block title %}{{ _("Join Course") }}{% endblock %} {% block page_content %}

{{ _("Join Course") }}

Course: {{course.title}}

Cohort: {{cohort.title}}

Subgroup: {{subgroup.title}}

{% if frappe.session.user == "Guest" %}

{{ _("Please login to be able to join the course.") }}

{{ _("If you don't already have an account, you can") }} {{ _("sign up for a new account") }}.

{{ _("Login to continue") }}
{% elif subgroup.has_student(frappe.session.user) %}

{{ _("You are already a student of this course.") }}

{{ _("Start Learning") }} →
{% elif subgroup.has_join_request(frappe.session.user) %}

{{ _("We have received your request to join the course. You'll hear back from us soon.") }}

{% else %} {{ _("Join the course") }} {% endif %} {% endblock %} {% block script %} {% endblock %}