diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-13 16:10:44 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-13 16:10:44 +0200 |
commit | 885cac313e1c937f93379a9a234ca178cc75ab0d (patch) | |
tree | 115d82225b75c4298c68619566a605b2001ef41a /archaeological_operations/forms.py | |
parent | f55cc73e5eb3b8d34809fe13735b2dc68b8067fc (diff) | |
download | Ishtar-885cac313e1c937f93379a9a234ca178cc75ab0d.tar.bz2 Ishtar-885cac313e1c937f93379a9a234ca178cc75ab0d.zip |
Site: add comment field
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 1fd9a8d79..e28fb2421 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1322,6 +1322,8 @@ class SiteForm(ManageOldType): label=_(u"Cadastral locality"), widget=forms.Textarea, required=False ) + comment = forms.CharField(label=_(u"Comment"), widget=forms.Textarea, + required=False) TYPES = [ FieldType('period', models.Period, True), |