diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-06-10 23:12:47 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-06-10 23:12:47 +0200 |
commit | c5cb5835b593a9423638e3666959489e35210605 (patch) | |
tree | c28b0031165a92a2632eb10895becb30f33406c0 /archaeological_operations/wizards.py | |
parent | 5c1b191fcce99ccc0c5d53e0d9d39903886a6e19 (diff) | |
download | Ishtar-c5cb5835b593a9423638e3666959489e35210605.tar.bz2 Ishtar-c5cb5835b593a9423638e3666959489e35210605.zip |
Fix town listing on parcel form (refs #2534)
Diffstat (limited to 'archaeological_operations/wizards.py')
-rw-r--r-- | archaeological_operations/wizards.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_operations/wizards.py b/archaeological_operations/wizards.py index 01f15886d..59eb1d554 100644 --- a/archaeological_operations/wizards.py +++ b/archaeological_operations/wizards.py @@ -39,7 +39,8 @@ class OperationWizard(Wizard): model = models.Operation object_parcel_type = 'operation' parcel_step_key = 'parcelsgeneral-' - town_step_keys = ['towns-'] # step contening the current(s) town(s) + # step contening the current(s) town(s) + town_step_keys = ['towns-', 'townsgeneral-'] town_input_id = 'town' # input id of the current(s) town(s) multi_towns = True # true if current town are multi wizard_done_window = reverse_lazy('show-operation') |