Numerous improvements to case questions

This commit is contained in:
Ross
2024-06-24 08:59:15 +01:00
parent db43bcf557
commit 64cebf50a0
11 changed files with 348 additions and 74 deletions
@@ -0,0 +1,23 @@
# Generated by Django 5.0.2 on 2024-06-10 22:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0053_casedetail_question_answers'),
]
operations = [
migrations.AddField(
model_name='casecollection',
name='feedback_once_collection_complete',
field=models.BooleanField(default=True, help_text='If true feedback is only given once the collection is complete. If false feedback is given after each case.'),
),
migrations.AlterField(
model_name='casecollection',
name='collection_type',
field=models.CharField(choices=[('REV', 'Review'), ('REP', 'Report'), ('QUE', 'Question'), ('VIV', 'Viva')], default='REP', max_length=3),
),
]