1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-05 09:17:54 +03:00

* Upgraded user interface

* Fixed visual name max length (to 32)
This commit is contained in:
Adolfo Gómez García 2020-08-06 12:47:19 +02:00
parent a34e8c2c9d
commit ff4ff7899c
4 changed files with 4 additions and 4 deletions

View File

@ -238,7 +238,7 @@ class ServicesPools(ModelHandler):
'tooltip': ugettext('Service used as base of this service pool'),
'type': gui.InputField.CHOICE_TYPE,
'rdonly': True,
'order': 100, # Ensueres is At end
'order': 100, # Ensures is At end
}, {
'name': 'osmanager_id',
'values': [gui.choiceItem(-1, '')] + gui.sortedChoices([gui.choiceItem(v.uuid, v.name) for v in OSManager.objects.all()]),

View File

@ -148,7 +148,7 @@ class BaseModelHandler(Handler):
'label': _('Short name'),
'tooltip': _('Short name for user service visualization'),
'required': False,
'length': 18,
'length': 32,
'order': 0 - 95,
})
if 'comments' in flds:

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long