summaryrefslogtreecommitdiff
path: root/archaeological_operations/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r--archaeological_operations/forms.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py
index fc7b732a3..ba937f742 100644
--- a/archaeological_operations/forms.py
+++ b/archaeological_operations/forms.py
@@ -565,6 +565,13 @@ if FILES_AVAILABLE:
reverse_lazy('autocomplete-file'), associated_model=File),
validators=[valid_id(File)], required=False)
+
+class OperationFormAbstract(forms.Form):
+ form_label = _(u"Abstract")
+ abstract = forms.CharField(
+ label=_(u"Abstract"),
+ widget=forms.Textarea(attrs={'class': 'xlarge'}), required=False)
+
SLICING = (("month", _(u"months")), ('year', _(u"years")),)
DATE_SOURCE = (('creation', _(u"Creation date")),