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/skills/skill_level.html.twig

36 lines
988 B

{% autoescape false %}
{% if form is defined %}
{{ form }}
{% endif %}
<table class="table">
<tr>
<th>{{ 'Name' | trans }}</th>
<th>{{ 'Short name' | trans }}</th>
<th>{{ 'Profile' | trans }}</th>
<th>{{ 'Actions' | trans }}</th>
</tr>
{% for item in list %}
<tr>
<td>{{ item.name }}</td>
<td>{{ item.shortName }}</td>
<td> {{ item.profile }}</td>
<td>
<a
href="{{ url('legacy_main', {'name' : 'skills/skill_level.php'}) }}?action=edit&id={{ item.id }}"
>
{{ 'pencil'|mdi_icon(22) }}
</a>
<a
href="{{ url('legacy_main', {'name' : 'skills/skill_level.php'}) }}?action=delete&id={{ item.id }}"
>
{{ 'delete'|mdi_icon(22) }}
</a>
</td>
</tr>
{% endfor %}
</table>
{% endautoescape %}