Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/template/default/layout/hot_courses.tpl

70 lines
3.0 KiB

{% if hot_courses is not null and hot_courses is not empty %}
<script type="text/javascript">
$(document).ready( function() {
$('.star-rating li a').live('click', function(event) {
var id = $(this).parents('ul').attr('id');
$('#vote_label2_' + id).html("{{'Loading'|get_lang}}");
$.ajax({
url: $(this).attr('data-link'),
success: function(data) {
$("#rating_wrapper_"+id).html(data);
if(data == 'added') {
//$('#vote_label2_' + id).html("{{'Saved'|get_lang}}");
}
if(data == 'updated') {
//$('#vote_label2_' + id).html("{{'Saved'|get_lang}}");
}
}
});
});
});
</script>
<section id="hot_courses">
<div class="row">
<div class="span9">
<div class="page-header">
<h2>{{"HottestCourses"|get_lang}}</h2>
</div>
</div>
{% for hot_course in hot_courses %}
<div class="span9">
<div class="well_border">
<div class="row">
<div class="span2">
<div class="thumbnail">
<img src="{{ hot_course.extra_info.course_image }}" />
{# html_image file=$hot_course.extra_info.course_image #}
</div>
</div>
<div class="span6">
<div class="categories-course-description">
<h3>{{ hot_course.extra_info.name }}</h3>
{{ hot_course.extra_info.rating_html }}
</div>
<p>
{# World #}
{% if hot_course.extra_info.visibility == 3 or (hot_course.extra_info.visibility == 2 and _u.logged == 1 ) %}
<a class="btn btn-primary" title="" href="{{_p.web_course}}{{hot_course.extra_info.path}}/index.php">
{{ "GoToCourse"|get_lang }}
</a>
{% endif %}
{# Description #}
{% if hot_course.extra_info.visibility == 3 %}
<a class="ajax btn" title="" href="{{ _p.web_ajax}}course_home.ajax.php?a=show_course_information&code={{hot_course.course_code}}">
{{"Description"|get_lang}}
</a>
{% endif %}
</p>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
{% endif %}