improve exam group management

This commit is contained in:
Ross
2024-08-12 10:33:15 +01:00
parent bd1bb54f9f
commit 6fe2bae8a8
22 changed files with 352 additions and 155 deletions
@@ -0,0 +1,38 @@
# Generated by Django 5.0.2 on 2024-08-12 09:32
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('generic', '0016_remove_examuserstatus_cid_user_and_more'),
]
operations = [
migrations.AddField(
model_name='cidusergroup',
name='open_access',
field=models.BooleanField(default=False, help_text='If the group is freely accessible to use'),
),
migrations.AddField(
model_name='userusergroup',
name='open_access',
field=models.BooleanField(default=False, help_text='If the group is freely accessible to use'),
),
migrations.AlterField(
model_name='cidusergroup',
name='archive',
field=models.BooleanField(default=False, help_text='Archived groups remain on the test system but are not displayed by default'),
),
migrations.AlterField(
model_name='cidusergroup',
name='name',
field=models.CharField(blank=True, help_text='Name of the Group', max_length=50),
),
migrations.AlterField(
model_name='userusergroup',
name='name',
field=models.CharField(blank=True, help_text='Name of the Group', max_length=50),
),
]