diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2014-07-18 19:26:49 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2014-07-18 19:27:33 +0200 |
commit | 3575ddb6a5bd9a00a2ac3064f0ba99259dc57af0 (patch) | |
tree | 56fb851bd45f51ae7a2df5b4fd4e23e6275449d9 /archaeological_operations/forms.py | |
parent | dcf828da68293f50b654a72a59f5d31dafa1a013 (diff) | |
download | Ishtar-3575ddb6a5bd9a00a2ac3064f0ba99259dc57af0.tar.bz2 Ishtar-3575ddb6a5bd9a00a2ac3064f0ba99259dc57af0.zip |
Administrativ act: change object length (refs #1649)
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index acc56bbef..d31d5c542 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -703,7 +703,7 @@ class AdministrativeActOpeForm(forms.Form): # widget=widgets.JQueryAutoComplete(reverse_lazy('autocomplete-person'), # associated_model=Person, new=True), # validators=[valid_id(Person)], required=False) - act_object = forms.CharField(label=_(u"Object"), max_length=200, + act_object = forms.CharField(label=_(u"Object"), max_length=300, widget=forms.Textarea, required=False) signature_date = forms.DateField(label=_(u"Signature date"), initial=get_now, widget=widgets.JQueryDate) |