mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 15:33:09 +01:00
Improve help texts
This commit is contained in:
parent
0a1e73918d
commit
2c24fa9cae
@ -32,7 +32,7 @@ class Command(BaseCommand):
|
|||||||
nargs='*',
|
nargs='*',
|
||||||
choices=list(day_names.keys()),
|
choices=list(day_names.keys()),
|
||||||
required=True,
|
required=True,
|
||||||
help='Days of week (monday, tuesday, etc)'
|
help='Days of week (monday, tuesday, etc). Enter the days as space separated list.'
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-o',
|
'-o',
|
||||||
@ -46,7 +46,7 @@ class Command(BaseCommand):
|
|||||||
'--queues',
|
'--queues',
|
||||||
nargs='*',
|
nargs='*',
|
||||||
choices=list(Queue.objects.values_list('slug', flat=True)),
|
choices=list(Queue.objects.values_list('slug', flat=True)),
|
||||||
help='Queues to include (default: all). Use queue slugs'
|
help='Queues to include (default: all). Enter the queues slug as space separated list.'
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-x',
|
'-x',
|
||||||
|
@ -29,7 +29,7 @@ class Command(BaseCommand):
|
|||||||
'--queues',
|
'--queues',
|
||||||
nargs='*',
|
nargs='*',
|
||||||
choices=list(Queue.objects.values_list('slug', flat=True)),
|
choices=list(Queue.objects.values_list('slug', flat=True)),
|
||||||
help='Queues to include (default: all). Use queue slugs'
|
help='Queues to include (default: all). Enter the queues slug as space separated list.'
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-x',
|
'-x',
|
||||||
|
@ -24,7 +24,7 @@ class Command(BaseCommand):
|
|||||||
'--queues',
|
'--queues',
|
||||||
nargs='*',
|
nargs='*',
|
||||||
choices=list(Queue.objects.values_list('slug', flat=True)),
|
choices=list(Queue.objects.values_list('slug', flat=True)),
|
||||||
help='Queues to include (default: all). Use queue slugs'
|
help='Queues to include (default: all). Enter the queues slug as space separated list.'
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-x',
|
'-x',
|
||||||
|
Loading…
Reference in New Issue
Block a user