rater/templates/index/page.html.twig

17 lines
302 B
Twig
Raw Normal View History

2026-06-02 18:46:00 +02:00
<html>
<head>
<title>Test</title>
</head>
<body>
2026-06-02 18:53:17 +02:00
<h1>Rater</h1>
2026-06-02 22:01:42 +02:00
{{ form(form) }}
<h2>Existing</h2>
<ul>
{% for subject in subjects %}
<li>{{ subject.name }}</li>
{% endfor %}
</ul>
2026-06-02 18:46:00 +02:00
</body>
</html>