mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-17 11:21:11 +02:00
Making Queue slug unique and improving certain admin-related behaviour
This commit is contained in:
@ -45,6 +45,7 @@ class Queue(models.Model):
|
||||
slug = models.SlugField(
|
||||
_('Slug'),
|
||||
max_length=50,
|
||||
unique=True,
|
||||
help_text=_('This slug is used when building ticket ID\'s. Once set, '
|
||||
'try not to change it or e-mailing may get messy.'),
|
||||
)
|
||||
@ -179,6 +180,7 @@ class Queue(models.Model):
|
||||
max_length=50,
|
||||
blank=True,
|
||||
null=True,
|
||||
editable=False,
|
||||
help_text=_('Name used in the django.contrib.auth permission system'),
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user