This commit is contained in:
Ross
2022-03-25 21:38:12 +00:00
parent db30742f4d
commit 6500428cd9
5 changed files with 569 additions and 520 deletions
@@ -0,0 +1,32 @@
# Generated by Django 3.2.4 on 2022-03-25 21:38
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0026_auto_20220321_1612'),
]
operations = [
migrations.AlterModelOptions(
name='casedetail',
options={'ordering': ('sort_order',)},
),
migrations.AddField(
model_name='casecollection',
name='show_description',
field=models.BooleanField(default=False, help_text='Show the description of the cases'),
),
migrations.AddField(
model_name='casecollection',
name='show_discussion',
field=models.BooleanField(default=False, help_text='Show the case discussion'),
),
migrations.AddField(
model_name='casecollection',
name='show_title',
field=models.BooleanField(default=False, help_text='Show the title of the cases'),
),
]