diff options
Diffstat (limited to 'archaeological_finds/forms_treatments.py')
-rw-r--r-- | archaeological_finds/forms_treatments.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_finds/forms_treatments.py b/archaeological_finds/forms_treatments.py index 0ac7ee7d3..936834267 100644 --- a/archaeological_finds/forms_treatments.py +++ b/archaeological_finds/forms_treatments.py @@ -918,6 +918,8 @@ class ExhibitionSelect(DocumentItemSelect): reverse_lazy('autocomplete-person'), associated_model=Person), validators=[valid_id(Person)]) + description = forms.CharField(label=_("Description")) + comment = forms.CharField(label=_("Comment")) TYPES = [ FieldType("exhibition_type", models.ExhibitionType), ] @@ -963,6 +965,8 @@ class ExhibitionForm(forms.ModelForm, CustomForm, ManageOldType): widget=widgets.JQueryAutoComplete( reverse_lazy('autocomplete-findbasket'), associated_model=models.FindBasket), required=False) + description = forms.CharField(label=_("Description"), + widget=forms.Textarea, required=False) comment = forms.CharField(label=_("Comment"), widget=forms.Textarea, required=False) |