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/plugin/studentfollowup/view/my_students.html.twig

27 lines
739 B

<h2>{{ 'Students' | get_lang}}</h2>
{{ form }}
{% if users %}
<table class="data_table">
<tr>
<th>{{'Student' | get_lang }}</th>
<th>{{'Action' | get_lang }}</th>
</tr>
{% for user in users %}
<tr>
<td>{{ user.user.completeNameWithUsername }}</td>
<td>
<a href="{{ my_students_url }}student={{ user.user.id }}">
{{ 'ActionIcon::VIEW_DETAILS' | mdi_icon }}
</a>
<a href="{{ post_url }}student_id={{ user.user.id }}">
{{ 'ToolIcon::BLOG' | mdi_icon }}
</a>
</td>
</tr>
{% endfor %}
</table>
<div>
{{ pagination }}
</div>
{% endif %}