Initial commit

This commit is contained in:
kddd21a
2026-07-29 10:47:40 +00:00
commit 402c3ec6ed
171 changed files with 10536 additions and 0 deletions
@@ -0,0 +1,18 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("exams", "0008_examset_category")]
operations = [
migrations.AddField(
model_name="question",
name="explanation",
field=models.TextField(blank=True, help_text="Shown to students in review mode after they submit the test."),
),
migrations.AddField(
model_name="question",
name="passage_reference",
field=models.TextField(blank=True, help_text="Optional exact sentence or short excerpt from the reading passage that supports this answer."),
),
]