wcs: clarify name of "forms user can access" option (#57061)

This commit is contained in:
Thomas NOËL 2021-09-17 16:42:57 +02:00 committed by Thomas NOËL
parent 754b1fdead
commit 763c84e496
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ class Migration(migrations.Migration):
model_name='wcscurrentformscell',
name='include_forms_user_can_access',
field=models.BooleanField(
default=False, verbose_name='Include requests for which the user is not the author'
default=False, verbose_name='Include forms to which the user can access'
),
),
]

View File

@ -12,7 +12,7 @@ class Migration(migrations.Migration):
model_name='wcscurrentformscell',
name='include_forms_user_can_access',
field=models.BooleanField(
default=False, verbose_name='Include requests for which the user is not the author'
default=False, verbose_name='Include forms to which the user can access'
),
),
]

View File

@ -466,7 +466,7 @@ class WcsCurrentFormsCell(CategoriesAndWcsSiteValidityMixin, CategoriesFiltering
done_forms = models.BooleanField(_('Done Forms'), default=False)
include_drafts = models.BooleanField(_('Include drafts'), default=False)
include_forms_user_can_access = models.BooleanField(
_('Include requests for which the user is not the author'), default=False
_('Include forms to which the user can access'), default=False
)
class Meta: