Add cabinet label help text
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
@@ -32,7 +32,10 @@ class Cabinet(MPTTModel):
|
|||||||
blank=True, db_index=True, null=True, on_delete=models.CASCADE,
|
blank=True, db_index=True, null=True, on_delete=models.CASCADE,
|
||||||
related_name='children', to='self'
|
related_name='children', to='self'
|
||||||
)
|
)
|
||||||
label = models.CharField(max_length=128, verbose_name=_('Label'))
|
label = models.CharField(
|
||||||
|
help_text=_('A short text used to identify the cabinet.'),
|
||||||
|
max_length=128, verbose_name=_('Label')
|
||||||
|
)
|
||||||
documents = models.ManyToManyField(
|
documents = models.ManyToManyField(
|
||||||
blank=True, related_name='cabinets', to=Document,
|
blank=True, related_name='cabinets', to=Document,
|
||||||
verbose_name=_('Documents')
|
verbose_name=_('Documents')
|
||||||
|
|||||||
Reference in New Issue
Block a user