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.
26 lines
739 B
26 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 }}">
|
|
<img src="{{ '2rightarrow.png'|icon() }}">
|
|
</a>
|
|
<a href="{{ post_url }}student_id={{ user.user.id }}">
|
|
<img src="{{ 'blog.png'|icon() }}">
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<div>
|
|
{{ pagination }}
|
|
</div>
|
|
{% endif %} |