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.
43 lines
1.4 KiB
43 lines
1.4 KiB
<table>
|
|
<tr>
|
|
<td>ID</td>
|
|
<td>Name</td>
|
|
<td>Image</td>
|
|
<td>Author</td>
|
|
</tr>
|
|
|
|
{% if vocabularies is defined %}
|
|
{% for row in vocabularies %}
|
|
{% if vocabID is defined and vocabID == row.id %}
|
|
<tr style="background-color:red;">
|
|
{% else %}
|
|
<tr>
|
|
{% endif %}
|
|
<td>{{ row.id }}</td>
|
|
<td>{{ row.name }}</td>
|
|
<td>{{ row.image }}</td>
|
|
<td>{{ row.author }}</td>
|
|
|
|
{% if actions is defined%}
|
|
<td>
|
|
{% if 'getContent' in actions %}
|
|
<a href="{{base}}/teacher/{{userID}}/getContent?vocabID={{row.id}}">
|
|
<input class="btn btn-primary" type="button" value="show content" />
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% if 'delById' in actions %}
|
|
<a id="delButton" href="{{base}}/teacher/{{userID}}/delById?vocabID={{ row.id }}">
|
|
<input class="btn btn-primary" type="button" value="delete from vocabulary" />
|
|
</a>
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
</table> |