#271 Identifier non editable

* sets the identifier form field as readonly
* extends help text
* updates translations
This commit is contained in:
2022-12-09 12:43:49 +01:00
parent 0de60c00e8
commit a5cc86798c
5 changed files with 7 additions and 5 deletions

View File

@@ -30,11 +30,12 @@ class AbstractCompensationForm(BaseForm):
label=_("Identifier"),
label_suffix="",
max_length=255,
help_text=_("Generated automatically"),
help_text=_("Generated automatically - not editable"),
widget=GenerateInput(
attrs={
"class": "form-control",
"url": None, # Needs to be set in inheriting constructors
"readonly": True,
}
)
)