.
This commit is contained in:
@@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 4.1.4 on 2024-02-17 22:04
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('atlas', '0042_alter_case_series'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='seriesdetail',
|
||||||
|
name='feedback',
|
||||||
|
field=models.BooleanField(default=False, help_text='Set to true if the series should only be shown for feedback purposes.'),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -875,6 +875,8 @@ class SeriesDetail(models.Model):
|
|||||||
|
|
||||||
sort_order = models.IntegerField(default=1000)
|
sort_order = models.IntegerField(default=1000)
|
||||||
|
|
||||||
|
feedback = models.BooleanField(default=False, help_text="Set to true if the series should only be shown for feedback purposes.")
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
ordering = ("sort_order",)
|
ordering = ("sort_order",)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user