{% if buying_service %}
{% if service.tax_enable %}
{{ 'Price'|get_plugin_lang('BuyCoursesPlugin')}} :
{{ service.currency == 'BRL' ? 'R$' : service.currency }} {{ service.price_without_tax }}
{{ service.tax_name }} ({{ service.tax_perc_show }}%):
{{ service.currency == 'BRL' ? 'R$' : service.currency }} {{ service.tax_amount }}
{{ 'Total'|get_plugin_lang('BuyCoursesPlugin')}} :
{{ service.currency == 'BRL' ? 'R$' : service.currency }} {{ service.price_with_tax }}
{% else %}
{{ 'Total'|get_plugin_lang('BuyCoursesPlugin')}} :
{{ service.currency == 'BRL' ? 'R$' : service.currency }} {{ service.price }}
{% endif %}
{% if service.description %}
{{ service.description }}
{% endif %}
{% if service.applies_to %}
-
{% 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 }}
{% elseif service.applies_to == 4 %}
{{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') ~ ' ' ~ 'TemplateTitleCertificate'|get_lang }}
{% endif %}
{% endif %}
-
{{ 'Price'|get_plugin_lang('BuyCoursesPlugin') }}
{% if service.tax_enable %}
: {{ service.currency == 'BRL' ? 'R$' : service.currency }} {{ service.price_with_tax }}
{% else %}
: {{ service.currency == 'BRL' ? 'R$' : service.currency }} {{ service.price }}
{% endif %}
/ {{ service.duration_days == 0 ? 'NoLimit'|get_lang : service.duration_days ~ ' ' ~ 'Days'|get_lang }}
- {{ service.owner_name }}
{% endif %}
{{ 'PaymentMethods'|get_plugin_lang('BuyCoursesPlugin') }}
{{ form }}