diff --git a/bookwyrm/migrations/0041_auto_20210131_0500.py b/bookwyrm/migrations/0041_auto_20210131_1614.py similarity index 95% rename from bookwyrm/migrations/0041_auto_20210131_0500.py rename to bookwyrm/migrations/0041_auto_20210131_1614.py index eb00e3f3..8deb69a8 100644 --- a/bookwyrm/migrations/0041_auto_20210131_0500.py +++ b/bookwyrm/migrations/0041_auto_20210131_1614.py @@ -1,4 +1,4 @@ -# Generated by Django 3.0.7 on 2021-01-31 05:00 +# Generated by Django 3.0.7 on 2021-01-31 16:14 import bookwyrm.models.base_model import bookwyrm.models.fields @@ -24,7 +24,7 @@ class Migration(migrations.Migration): ('name', bookwyrm.models.fields.CharField(max_length=100)), ('description', bookwyrm.models.fields.TextField(blank=True, null=True)), ('privacy', bookwyrm.models.fields.CharField(choices=[('public', 'Public'), ('unlisted', 'Unlisted'), ('followers', 'Followers'), ('direct', 'Direct')], default='public', max_length=255)), - ('curation', bookwyrm.models.fields.CharField(choices=[('closed', 'Closed'), ('open', 'Open'), ('moderated', 'Moderated')], default='closed', max_length=255)), + ('curation', bookwyrm.models.fields.CharField(choices=[('closed', 'Closed'), ('open', 'Open'), ('curated', 'Curated')], default='closed', max_length=255)), ], options={ 'abstract': False, diff --git a/bookwyrm/models/list.py b/bookwyrm/models/list.py index dd50f209..28ee7a2a 100644 --- a/bookwyrm/models/list.py +++ b/bookwyrm/models/list.py @@ -11,7 +11,7 @@ from . import fields CurationType = models.TextChoices('Curation', [ 'closed', 'open', - 'moderated', + 'curated', ]) class List(OrderedCollectionMixin, BookWyrmModel): diff --git a/bookwyrm/templates/lists/list-item.html b/bookwyrm/templates/lists/list-item.html new file mode 100644 index 00000000..0f0cb8a6 --- /dev/null +++ b/bookwyrm/templates/lists/list-item.html @@ -0,0 +1,2 @@ +