{{
{% if buying_course %}
{{ course.title }} {% if course.tax_enable %}
{{ 'Price'|get_plugin_lang('BuyCoursesPlugin')}} : {{ course.currency == 'BRL' ? 'R$' : course.currency }} {{ course.price_without_tax }}
{{ course.tax_name }} ({{ course.tax_perc }}%): {{ course.currency == 'BRL' ? 'R$' : course.currency }} {{ course.tax_amount }}
{% endif %}
{{ 'Total'|get_plugin_lang('BuyCoursesPlugin')}} : {{ course.currency == 'BRL' ? 'R$' : course.currency }} {{ course.price }}

{{ course.title }}

{% if course.description %}
{{ course.description }}
{% endif %}

{{ 'Teachers'|get_plugin_lang('BuyCoursesPlugin')}} : {% for teacher in course.teachers %} {{ teacher.name }}, {% endfor %}

{% elseif buying_session %}
{{ session.name }} {% if session.tax_enable %}
{{ 'Price'|get_plugin_lang('BuyCoursesPlugin')}} : {{ session.currency == 'BRL' ? 'R$' : session.currency }} {{ session.price_without_tax }}
{{ session.tax_name }} ({{ session.tax_perc }}%): {{ session.currency == 'BRL' ? 'R$' : session.currency }} {{ session.tax_amount }}
{% endif %}
{{ 'Total'|get_plugin_lang('BuyCoursesPlugin')}} : {{ session.currency == 'BRL' ? 'R$' : session.currency }} {{ session.price }}

{{ session.name }}

{% if session.description %}
{{ session.description }}
{% endif %}
{{ session.dates.display }}
{% for course in session.courses %}

{{ course.title }}

{{ 'Teachers'|get_plugin_lang('BuyCoursesPlugin')}} : {% if course.coaches|length %} {% for coach in course.coaches %} {{ coach.name }}, {% endfor %} {% endif %}

{% endfor %}
{% endif %}

{{ 'PaymentMethods'|get_plugin_lang('BuyCoursesPlugin') }}

{{ form }}