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 | 982b4c291a88fcab97b468d57c81e7099b225296 (patch) | |
tree | f7b0823f41f8ffbed93e018bda8526c0f7b34283 /ishtar/ishtar_base/forms_operations.py | |
parent | 845ea77ec43d1eff4d2b11df454f5f895832d4b7 (diff) | |
download | Ishtar-982b4c291a88fcab97b468d57c81e7099b225296.tar.bz2 Ishtar-982b4c291a88fcab97b468d57c81e7099b225296.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) |