add open access exams

This commit is contained in:
Ross
2024-10-14 12:41:17 +01:00
parent 38fc924222
commit 185942b716
7 changed files with 102 additions and 3 deletions
@@ -0,0 +1,18 @@
# Generated by Django 5.0.2 on 2024-10-14 11:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('longs', '0029_alter_exam_markers'),
]
operations = [
migrations.AddField(
model_name='exam',
name='exam_open_access',
field=models.BooleanField(default=False, help_text='Set to true if you want any registered user to be able to take the exam.'),
),
]