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/skill/profile_item.tpl

13 lines
484 B

{% if profiles is not null %}
<h4 class="title-skill">{{ "SkillProfiles"|get_lang }}</h4>
<div class="items_save">
<ul class="holder_simple">
{%for profile in profiles %}
<li class="bit-box load_profile" rel="{{ profile.id }}" >
<button class="close">&times;</button>
<a href="#">{{ profile.name }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}