blob: a146406175a8a91bb29a2fd64f204d0caeb134b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends '_page.html.twig' %}
{% block content %}
<p>
このページは管理画面です
</p>
<h2>{{ quiz.title }}</h2>
<p>
{{ quiz.description }}
</p>
<h2>テストケース一覧</h2>
<ul>
{% for testcase in testcases %}
<li><a href="{{ url_for('admin_testcase_edit', { qslug: quiz.slug, tid: testcase.testcase_id }) }}">テストケース #{{ testcase.testcase_id }}</a></li>
{% endfor %}
</ul>
<a href="{{ url_for('admin_testcase_new', { qslug: quiz.slug }) }}">テストケースを追加する</a>
{% endblock %}
|