16 lines
302 B
Twig
16 lines
302 B
Twig
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
</head>
|
|
<body>
|
|
<h1>Rater</h1>
|
|
{{ form(form) }}
|
|
|
|
<h2>Existing</h2>
|
|
<ul>
|
|
{% for subject in subjects %}
|
|
<li>{{ subject.name }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|