{% if sessions_are_included %}
{{ 'Title'|get_lang }} |
{{ 'StartDate'|get_lang }} |
{{ 'EndDate'|get_lang }} |
{{ 'VisibleInCatalog'|get_plugin_lang('BuyCoursesPlugin') }} |
{{ 'Price'|get_plugin_lang('BuyCoursesPlugin') }} |
{% if tax_enable and (tax_applies_to == 1 or tax_applies_to == 3) %}
{{ tax_name }} |
{% endif %}
{{ 'Options'|get_lang }} |
{% for item in sessions %}
{{ item.name }}
|
{{ item.displayStartDate | api_convert_and_format_date(6)}}
|
{{ item.displayEndDate |api_convert_and_format_date(6)}}
|
{% if item.buyCourseData %}
{% else %}
{% endif %}
|
{{ item.buyCourseData.price_formatted }}
|
{% if tax_enable and (tax_applies_to == 1 or tax_applies_to == 3) %}
{{ item.buyCourseData.tax_perc_show }} %
|
{% endif %}
{{ 'Configure'|get_lang }}
|
{% endfor %}
{{ session_pagination }}
{% endif %}
{% if services_are_included %}
{{ 'NewService'| get_plugin_lang('BuyCoursesPlugin') }}
{{ 'Service'|get_plugin_lang('BuyCoursesPlugin') }} |
{{ 'Description'|get_lang }} |
{{ 'Duration'|get_plugin_lang('BuyCoursesPlugin') }} |
{{ 'VisibleInCatalog'|get_plugin_lang('BuyCoursesPlugin') }} |
{{ 'Owner'|get_lang }} |
{{ 'Price'|get_plugin_lang('BuyCoursesPlugin') }} |
{% if tax_enable and (tax_applies_to == 1 or tax_applies_to == 4) %}
{{ tax_name }} |
{% endif %}
{{ 'Options'|get_lang }} |
{% for item in services %}
{{ item.name }}
|
{{ item.description }}
|
{% if item.duration_days == 0 %}
{{ 'NoLimit'|get_lang }}
{% else %}
{{ item.duration_days }} {{ 'Days'|get_lang }}
{% endif %}
|
{% if item.visibility == 1 %}
{% else %}
{% endif %}
|
{{ item.owner_name }}
|
{{ item.price_formatted }}
|
{% if tax_enable and (tax_applies_to == 1 or tax_applies_to == 4) %}
{% if item.tax_perc is null %}
{{ global_tax_perc }} %
{% else %}
{{ item.tax_perc }} %
{% endif %}
|
{% endif %}
{{ 'Edit'|get_lang }}
|
{% endfor %}
{{ service_pagination }}
{% endif %}