1
0

vault backup: 2025-12-22 14:32:30
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m47s

This commit is contained in:
2025-12-22 14:32:30 +01:00
parent b9549fb533
commit 1a84c48e07
4 changed files with 134 additions and 50 deletions

View File

@@ -5,12 +5,13 @@
<div class="options-container">
{% for option in question.options.all %}
<div class="option-item" id="option-{{ option.letter }}" onclick="toggleOption('{{ option.letter }}')">
<input type="checkbox" id="checkbox-{{ option.letter }}\" value="{{ option.letter }}"
<label class="option-item" for="checkbox-{{ option.letter }}" id="option-{{ option.letter }}">
<input type="checkbox" id="checkbox-{{ option.letter }}" value="{{ option.letter }}"
onchange="toggleOption('{{ option.letter }}')"
style="margin-right: 0.5rem; width: 1.2rem; height: 1.2rem; cursor: pointer;">
<span class="option-letter">{{ option.letter }}</span>
<span>{{ option.text }}</span>
</div>
</label>
{% endfor %}
</div>