diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-28 17:05:14 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-28 17:05:14 +0100 |
commit | e34df16f34008aa7019a5240689a5e0e7f64e18d (patch) | |
tree | 7e928cd57d824378308bb9d31f1eaf3804b49570 /ishtar/furnitures/forms.py | |
parent | 327c22fb70db76186c3765c168a7654102c59177 (diff) | |
download | Ishtar-e34df16f34008aa7019a5240689a5e0e7f64e18d.tar.bz2 Ishtar-e34df16f34008aa7019a5240689a5e0e7f64e18d.zip |
Manage ordering - default item - save last search in session (refs #142)
Diffstat (limited to 'ishtar/furnitures/forms.py')
-rw-r--r-- | ishtar/furnitures/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar/furnitures/forms.py b/ishtar/furnitures/forms.py index 2725815b4..a7f31999e 100644 --- a/ishtar/furnitures/forms.py +++ b/ishtar/furnitures/forms.py @@ -1079,7 +1079,7 @@ class OperationFormSelection(forms.Form): form_label = _("Operation") associated_models = {'pk':models.Operation} currents = {'pk':models.Operation} - pk = forms.IntegerField(label=_("Operation"), required=False, + pk = forms.IntegerField(label="", required=False, widget=widgets.JQueryJqGrid(reverse_lazy('json-operation'), OperationSelect(), ['operation_type', 'year']), validators=[models.valid_id(models.Operation)]) |