{% autoescape false %}
{{ 'ServiceName'|get_plugin_lang('BuyCoursesPlugin') }} | {{ 'OrderReference'|get_plugin_lang('BuyCoursesPlugin') }} | {{ 'OrderStatus'|get_plugin_lang('BuyCoursesPlugin') }} | {{ 'OrderDate'|get_plugin_lang('BuyCoursesPlugin') }} | {{ 'Price'|get_plugin_lang('BuyCoursesPlugin') }} | {{ 'ServiceSaleInfo'|get_plugin_lang('BuyCoursesPlugin') }} |
---|---|---|---|---|---|
{{ sale.service_name }} | {{ sale.reference }} | {% if sale.status == sale_status_cancelled %} {{ 'SaleStatusCancelled'|get_plugin_lang('BuyCoursesPlugin') }} {% elseif sale.status == sale_status_pending %} {{ 'SaleStatusPending'|get_plugin_lang('BuyCoursesPlugin') }} {% elseif sale.status == sale_status_completed %} {{ 'SaleStatusCompleted'|get_plugin_lang('BuyCoursesPlugin') }} {% endif %} | {{ sale.date }} | {{ sale.currency ~ ' ' ~ sale.price }} | {{ 'Info' | get_lang }} |