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.
sae_2a_anglais/Project/php/templates/vocabularyContainer.twig

34 lines
1.1 KiB

<table>
<tr>
<td>ID</td>
<td>Name</td>
<td>Image</td>
<td>Author</td>
</tr>
{% if vocabularies is defined %}
{% for row in vocabularies %}
<tr>
<td>{{ row.id }}</td>
<td>{{ row.name }}</td>
<td>{{ row.image }}</td>
<td>{{ row.author }}</td>
{% if actions is defined %}
<td>
{% if actions == 'affAllVocab' %}
<a href="affAllVocab">
<input class="btn-black" type="button" value="Delete from group"/>
</a>
{% elseif actions == 'getByName' %}
<a href="getByName?name={{ selectedName }}">
<input class="btn-black" type="button" value="Delete from group"/>
</a>
{% endif %}
</td>
{% endif %}
</tr>
{% endfor %}
{% endif %}
</table>