diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-07-08 00:56:55 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-07-08 00:56:55 +0200 | 
| commit | 3586f706b1ea5e36009e5db59a8db7eb71ca50a4 (patch) | |
| tree | f7b0823f41f8ffbed93e018bda8526c0f7b34283 /ishtar/ishtar_base/forms_operations.py | |
| parent | 31b7b29906d8534ccc6318793750ad51650c12a2 (diff) | |
| download | Ishtar-3586f706b1ea5e36009e5db59a8db7eb71ca50a4.tar.bz2 Ishtar-3586f706b1ea5e36009e5db59a8db7eb71ca50a4.zip  | |
Add Open/Close criteria for Operations (refs #429)
Diffstat (limited to 'ishtar/ishtar_base/forms_operations.py')
| -rw-r--r-- | ishtar/ishtar_base/forms_operations.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar/ishtar_base/forms_operations.py b/ishtar/ishtar_base/forms_operations.py index 7274e66b5..1df0b16bb 100644 --- a/ishtar/ishtar_base/forms_operations.py +++ b/ishtar/ishtar_base/forms_operations.py @@ -189,6 +189,7 @@ class OperationSelect(forms.Form):      remains = forms.ChoiceField(label=_("Remains"),                                  choices=models.RemainType.get_types())      year = forms.IntegerField(label=_("Year")) +    end_date = forms.NullBooleanField(label=_(u"Is open?"))      def __init__(self, *args, **kwargs):          super(OperationSelect, self).__init__(*args, **kwargs)  | 
