aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/templates/admin_quiz_edit.html.twig
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-01-17 02:11:31 +0900
committernsfisis <nsfisis@gmail.com>2024-01-17 02:11:31 +0900
commitdeacd0dfc195bca41af631114804d29937337cd8 (patch)
treef1f83580e5bc892c0794ac41632bc0cce3498f65 /services/app/templates/admin_quiz_edit.html.twig
parent38ddeb28ec846ee966d0fe6873585d697a9ef373 (diff)
downloadphperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.tar.gz
phperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.tar.zst
phperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.zip
.
Diffstat (limited to 'services/app/templates/admin_quiz_edit.html.twig')
-rw-r--r--services/app/templates/admin_quiz_edit.html.twig11
1 files changed, 11 insertions, 0 deletions
diff --git a/services/app/templates/admin_quiz_edit.html.twig b/services/app/templates/admin_quiz_edit.html.twig
new file mode 100644
index 0000000..114de02
--- /dev/null
+++ b/services/app/templates/admin_quiz_edit.html.twig
@@ -0,0 +1,11 @@
+{% extends '_page.html.twig' %}
+
+{% block content %}
+ <p>
+ このページは管理画面です。<a href="{{ url_for('quiz_view', { qslug: quiz.slug }) }}">通常の問題はこちらを参照してください</a>
+ </p>
+ {{ include('form/_form.html.twig') }}
+ <p>
+ <a href="{{ url_for('admin_testcase_list', { qslug: quiz.slug }) }}">テストケースを追加・削除・編集する</a>
+ </p>
+{% endblock %}