upgrade
This commit is contained in:
223
plugin/buycourses/view/catalog.tpl
Normal file
223
plugin/buycourses/view/catalog.tpl
Normal file
@@ -0,0 +1,223 @@
|
||||
<div id="buy-courses-tabs">
|
||||
{% if sessions_are_included %}
|
||||
<ul class="nav nav-tabs buy-courses-tabs" role="tablist">
|
||||
{% if coursesExist %}
|
||||
<li id="buy-courses-tab" class="{{ showing_courses ? 'active' : '' }}" role="presentation">
|
||||
<a href="course_catalog.php" aria-controls="buy-courses" role="tab">{{ 'Courses'|get_lang }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if sessionExist %}
|
||||
<li id="buy-sessions-tab" class="{{ showing_sessions ? 'active' : '' }}" role="presentation">
|
||||
<a href="session_catalog.php" aria-controls="buy-sessions" role="tab">{{ 'Sessions'|get_lang }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if services_are_included %}
|
||||
<li id="buy-services-tab" class="{{ showing_services ? 'active' : '' }}" role="presentation">
|
||||
<a href="service_catalog.php" aria-controls="buy-services"
|
||||
role="tab">{{ 'Services'|get_plugin_lang('BuyCoursesPlugin') }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane active" aria-labelledby="buy-sessions-tab" role="tabpanel">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
{{ search_filter_form }}
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<div class="row grid-courses">
|
||||
{% if showing_courses %}
|
||||
{% for course in courses %}
|
||||
<div class="col-md-4 col-sm-6">
|
||||
<article class="items-course">
|
||||
<div class="items-course-image">
|
||||
<figure class="img-responsive">
|
||||
<img alt="{{ course.title }}"
|
||||
class="img-responsive"
|
||||
src="{{ course.course_img ? course.course_img : 'session_default.png'|icon() }}">
|
||||
</figure>
|
||||
</div>
|
||||
<div class="items-course-info">
|
||||
{% set course_description_url = _p.web_ajax ~ 'course_home.ajax.php?' ~ {'code': course.code, 'a': 'show_course_information'}|url_encode() %}
|
||||
<h4 class="title">
|
||||
<a class="ajax" href="{{ course_description_url }}"
|
||||
data-title="{{ course.title }}">{{ course.title }}</a>
|
||||
</h4>
|
||||
<ul class="list-unstyled">
|
||||
{% for teacher in course.teachers %}
|
||||
<li><em class="fa fa-user"></em> {{ teacher }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<p class="text-right">
|
||||
<span class="label label-primary">
|
||||
{{ course.item.total_price_formatted }}
|
||||
</span>
|
||||
</p>
|
||||
{% if course.enrolled == "YES" %}
|
||||
<div class="alert alert-success">
|
||||
<em class="fa fa-check-square-o fa-fw"></em> {{ 'TheUserIsAlreadyRegisteredInTheCourse'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
</div>
|
||||
{% elseif course.enrolled == "NO" %}
|
||||
<div class="toolbar">
|
||||
<a class="ajax btn btn-info btn-block btn-sm" title=""
|
||||
href="{{ course_description_url }}"
|
||||
data-title="{{ course.title }}">
|
||||
<em class="fa fa-file-text"></em> {{ 'SeeDescription'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
</a>
|
||||
<a class="btn btn-success btn-block btn-sm" title=""
|
||||
href="{{ _p.web_plugin ~ 'buycourses/src/process.php?' ~ {'i': course.id, 't': 1}|url_encode() }}">
|
||||
<em class="fa fa-shopping-cart"></em> {{ 'Buy'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
</a>
|
||||
</div>
|
||||
{% elseif course.enrolled == "TMP" %}
|
||||
<div class="alert alert-info">{{ 'WaitingToReceiveThePayment'|get_plugin_lang('BuyCoursesPlugin') }}</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if showing_sessions %}
|
||||
{% for session in sessions %}
|
||||
<div class="col-md-4 col-sm-6">
|
||||
<article class="items-course">
|
||||
<div class="items-course-image">
|
||||
<figure class="img-responsive">
|
||||
<img alt="{{ session.name }}" class="img-responsive"
|
||||
src="{{ session.image ? session.image : 'session_default.png'|icon() }}">
|
||||
</figure>
|
||||
</div>
|
||||
<div class="items-course-info">
|
||||
<h4 class="title">
|
||||
<a href="{{ _p.web ~ 'session/' ~ session.id ~ '/about/' }}">{{ session.name }}</a>
|
||||
</h4>
|
||||
{% if 'show_session_coach'|api_get_setting == 'true' %}
|
||||
<p><em class="fa fa-user fa-fw"></em> {{ session.coach }}</p>
|
||||
{% endif %}
|
||||
<p>
|
||||
<em class="fa fa-calendar fa-fw"></em>
|
||||
{% if session.duration %}
|
||||
{{ 'SessionDurationXDaysTotal'|get_lang|format(session.duration) }}
|
||||
{% else %}
|
||||
{{ session.dates.display }}
|
||||
{% endif %}
|
||||
</p>
|
||||
<p class="text-right">
|
||||
<span class="label label-primary">
|
||||
{{ session.item.total_price_formatted }}
|
||||
</span>
|
||||
</p>
|
||||
<!--
|
||||
<ul class="list-unstyled">
|
||||
{% for course in session.courses %}
|
||||
<li>
|
||||
<em class="fa fa-book fa-fw"></em> {{ course.title }}
|
||||
{% if course.coaches|length %}
|
||||
<ul>
|
||||
{% for coach in course.coaches %}
|
||||
<li>{{ coach }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
-->
|
||||
{% if session.enrolled == "YES" %}
|
||||
<div class="alert alert-success">
|
||||
<em class="fa fa-check-square-o fa-fw"></em> {{ 'TheUserIsAlreadyRegisteredInTheSession'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
</div>
|
||||
{% elseif session.enrolled == "NO" %}
|
||||
<div class="toolbar">
|
||||
<a class="btn btn-success btn-block btn-sm"
|
||||
href="{{ _p.web_plugin ~ 'buycourses/src/process.php?' ~ {'i': session.id, 't': 2}|url_encode() }}">
|
||||
<em class="fa fa-shopping-cart"></em> {{ 'Buy'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
</a>
|
||||
</div>
|
||||
{% elseif session.enrolled == "TMP" %}
|
||||
<div class="alert alert-info">{{ 'WaitingToReceiveThePayment'|get_plugin_lang('BuyCoursesPlugin') }}</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if showing_services %}
|
||||
{% for service in services %}
|
||||
<div class="col-md-4 col-sm-6">
|
||||
<div class="items-course">
|
||||
<div class="items-course-image">
|
||||
<a href="{{ _p.web }}service/{{ service.id }}">
|
||||
<figure class="img-responsive">
|
||||
<img alt="{{ service.name }}"
|
||||
class="img-responsive"
|
||||
src="{{ service.image ? service.image : 'session_default.png'|icon() }}">
|
||||
</figure>
|
||||
</a>
|
||||
</div>
|
||||
<div class="items-course-info">
|
||||
<h4 class="title">
|
||||
<a title="{{ service.name }}"
|
||||
href="{{ _p.web }}service/{{ service.id }}">
|
||||
{{ service.name }}
|
||||
</a>
|
||||
</h4>
|
||||
<ul class="list-unstyled">
|
||||
<li>
|
||||
<em class="fa fa-clock-o"></em> {{ 'Duration'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
: {{ service.duration_days == 0 ? 'NoLimit'|get_lang : service.duration_days ~ ' ' ~ 'Days'|get_lang }}
|
||||
</li>
|
||||
{% if service.applies_to == 0 %}
|
||||
<li>
|
||||
<em class="fa fa-hand-o-right"></em> {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'None'|get_lang }}
|
||||
</li>
|
||||
{% elseif service.applies_to == 1 %}
|
||||
<li>
|
||||
<em class="fa fa-hand-o-right"></em> {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'User'|get_lang }}
|
||||
</li>
|
||||
{% elseif service.applies_to == 2 %}
|
||||
<li>
|
||||
<em class="fa fa-hand-o-right"></em> {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'Course'|get_lang }}
|
||||
</li>
|
||||
{% elseif service.applies_to == 3 %}
|
||||
<li>
|
||||
<em class="fa fa-hand-o-right"></em> {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'Session'|get_lang }}
|
||||
</li>
|
||||
{% elseif service.applies_to == 4 %}
|
||||
<li>
|
||||
<em class="fa fa-hand-o-right"></em> {{ 'AppliesTo'|get_plugin_lang('BuyCoursesPlugin') }} {{ 'TemplateTitleCertificate'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
</li>
|
||||
{% endif %}
|
||||
<li><em class="fa fa-user"></em> {{ service.owner_name }}</li>
|
||||
</ul>
|
||||
<p class="text-right">
|
||||
<span class="label label-primary">
|
||||
{{ service.total_price_formatted }}
|
||||
</span>
|
||||
</p>
|
||||
<div class="toolbar">
|
||||
<a class="btn btn-info btn-block btn-sm" title=""
|
||||
href="{{ _p.web }}service/{{ service.id }}">
|
||||
<em class="fa fa-info-circle"></em> {{ 'ServiceInformation'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
</a>
|
||||
<a class="btn btn-success btn-block btn-sm" title=""
|
||||
href="{{ _p.web_plugin ~ 'buycourses/src/service_process.php?' ~ {'i': service.id, 't': service.applies_to}|url_encode() }}">
|
||||
<em class="fa fa-shopping-cart"></em> {{ 'Buy'|get_plugin_lang('BuyCoursesPlugin') }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{{ pagination }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user