1
0
plweb/templates/index.html.twig
Anna Christina Naß ce5baaac35 Erster Commit
2025-07-07 16:25:22 +02:00

24 lines
456 B
Twig

{% extends 'base.html.twig' %}
{% block title %}PlusLifeWeb{% endblock %}
{% block content %}
{% if tests is not empty %}
<div>Test auswählen:</div>
<table class="table">
<tbody>
{% for test in tests %}
<tr><td><a href="test.php?id={{ test.id }}">{{ test.timestamp }}</td></tr>
{% endfor %}
</tbody>
</table>
{% else %}
<div class="bg-light p-3 rounded mt-3">
<pre class="mb-0">Keine Tests gefunden.</pre>
</div>
{% endif %}
{% endblock %}