.
This commit is contained in:
+3
-1
@@ -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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user