changed plural default

This commit is contained in:
vabene1111
2023-01-20 10:20:03 +01:00
parent fb21622bfe
commit 5e332bb88c
2 changed files with 19 additions and 1 deletions

View File

@ -260,7 +260,7 @@ class Space(ExportModelOperationsMixin('space'), models.Model):
max_recipes = models.IntegerField(default=0)
max_file_storage_mb = models.IntegerField(default=0, help_text=_('Maximum file storage for space in MB. 0 for unlimited, -1 to disable file upload.'))
max_users = models.IntegerField(default=0)
use_plural = models.BooleanField(default=False)
use_plural = models.BooleanField(default=True)
allow_sharing = models.BooleanField(default=True)
demo = models.BooleanField(default=False)
food_inherit = models.ManyToManyField(FoodInheritField, blank=True)