aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/templates/answer_list.html.twig
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-03-07 06:45:35 +0900
committernsfisis <nsfisis@gmail.com>2024-03-07 06:45:35 +0900
commit39736a81c4933f697d12fe4c993dc2ad3ae90f90 (patch)
tree5e2efd56a428e4ca48ed241f1c5ef87916dfa023 /services/app/templates/answer_list.html.twig
parentc19c84cd11380901c3f8ea60fa0319cca8d7b7d3 (diff)
downloadphperkaigi-2024-albatross-39736a81c4933f697d12fe4c993dc2ad3ae90f90.tar.gz
phperkaigi-2024-albatross-39736a81c4933f697d12fe4c993dc2ad3ae90f90.tar.zst
phperkaigi-2024-albatross-39736a81c4933f697d12fe4c993dc2ad3ae90f90.zip
fix issue where any one can see any answers
Diffstat (limited to 'services/app/templates/answer_list.html.twig')
-rw-r--r--services/app/templates/answer_list.html.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/app/templates/answer_list.html.twig b/services/app/templates/answer_list.html.twig
index 818a755..0ca3318 100644
--- a/services/app/templates/answer_list.html.twig
+++ b/services/app/templates/answer_list.html.twig
@@ -46,7 +46,7 @@
{% endif %}
</td>
<td>
- {% if quiz.isOpenToAnswer() and answer.author_id != current_user_id %}
+ {% if not quiz.isFinished() and answer.author_id != current_user_id %}
#{{ answer.answer_number }}
{% else %}
<a href="{{ url_for('answer_view', { qslug: quiz.slug, anum: answer.answer_number }) }}">#{{ answer.answer_number }}</a>