This commit is contained in:
Ross
2023-08-07 22:02:25 +01:00
parent 6ab1355919
commit 671c6f9ca3
5 changed files with 75 additions and 1 deletions
+3 -1
View File
@@ -199,11 +199,13 @@ class SeriesImageBase(models.Model):
class SeriesBase(models.Model):
description = models.TextField(
info = models.TextField(
blank=True,
help_text="Description of stack, for admin organisation, will not be visible when taking",
)
description = models.CharField(null=True, blank=True, max_length=255, help_text="Description of the series. This is usually visable to the user (as the name of the stack)")
open_access = models.BooleanField(
help_text="If a series should be freely available to browse", default=True
)