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/public/main/template/default/skill/badge_list.html.twig

45 lines
1.8 KiB

<div class="col-md-12">
<ul class="nav nav-tabs">
<li>
<a href="{{ _p.web_main }}skills/skill_badge.php">{{ 'Home' | trans }}</a>
</li>
<li class="active">
<a href="{{ _p.web_main }}skills/skill_badge_list.php">{{ "Current badges" | trans }}</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active">
<div class="openbadges-introduction">
<table class="table">
<thead>
<tr>
<th>{{ 'Badges' | trans }}</th>
<th>{{ 'Name' | trans }}</th>
<th>{{ 'Description' | trans }}</th>
<th>{{ 'Actions' | trans }}</th>
</tr>
</thead>
<tbody>
{% for skill in skills %}
<tr>
<td>
{{ skill.img_small }}
</td>
<td>
{{ skill.name }}
</td>
<td>{{ skill.description }}</td>
<td>
<a href="{{ _p.web_main }}skills/skill_badge_create.php?id={{ skill.id }}"
class="btn btn--primary btn-sm" title="{{ "Create badge" | trans }}">
<em class="fa fa-shield fa-fw"></em>
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>