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.
28 lines
763 B
28 lines
763 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Users</title>
|
|
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
|
|
<link href="{{base}}/css/styles.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
{% include 'navBar.twig' %}
|
|
{% if vocabulary is defined %}
|
|
<div class="content">
|
|
<section>
|
|
<table>
|
|
<tr>
|
|
{% for row in vocabularies %}
|
|
<td><a href="{{base}}/student/{{idStudent}}/memory/{{idVoc}}">
|
|
<input class="btn-black" type="button" value="Show all users"/>
|
|
</a></td>
|
|
{% endfor %}
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
</div>
|
|
{% endif %}
|
|
</body>
|
|
</html> |