{% autoescape false %}

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

{% if buying_course %}

{{ course.title }}

{{ course.currency }} {{ course.price }}

    {% for teacher in course.teachers %}
  • {{ teacher }}
  • {% endfor %}

{{'Description'|get_lang }}

{% elseif buying_session %}

{{ session.name }}

{{ session.currency }} {{ session.price }}

{{ session.dates.display }}

{% for course in session.courses %}
{{ course.title }}
{% for coach in course.coaches %}
{{ coach }}
{% endfor %} {% endfor %}
{% elseif buying_service %}

{{ service.name }}

    {% if service.applies_to == 0 %}
  • {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'None' | get_lang }}
  • {% elseif service.applies_to == 1 %}
  • {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'User' | get_lang }}
  • {% elseif service.applies_to == 2 %}
  • {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'Course' | get_lang }}
  • {% elseif service.applies_to == 3 %}
  • {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'Session' | get_lang }}
  • {% endif %}
  • {{ 'Price'|get_plugin_lang('BuyCoursesPlugin') }} : {{ service.currency == 'BRL' ? 'R$' : service.currency }} {{ service.price }} / {{ service.duration_days == 0 ? 'NoLimit' | get_lang : service.duration_days ~ ' ' ~ 'Days' | get_lang }}
  • {{ service.owner_name }}
  • {{ service.description }}

{{ service.currency == 'BRL' ? 'R$' : service.currency }} {{ service.price }}

{% endif %}

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

{{ form }}
{% endautoescape %}