% extends "templates/base.html" %}
{% block title %}Join a Course{% endblock %}
{% block head_include %}
{% endblock %}
{% block content %}
{% if frappe.session.user == "Guest" %}
{{ _("Login Required") }}
{{ _("Please log in to confirm joining the course" )}} {{ batch.course_title }}.
{{_("Login")}}
{% elif already_a_member %}
{{ _("Already a member") }}
{{ _("You are already a member of the batch") }} {{ batch.title }} {{ _("for the course") }} {{ batch.course_title }}.
{{_("Go to Batch Home")}}
{% else %}
{{ _("Confirm your membership") }}
{{ _("Please provide your confirmation to be a part of the batch") }} {{ batch.title }} {{ _("for the course") }}
{{ batch.course_title }}.
{{_("Confirm")}}
{% endif %}
{% endblock %}
{% block script %}
{% endblock %}