diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-23 16:03:43 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-23 16:03:43 +0100 | 
| commit | ba59db90b9e1326d78778d00fee5d7e850e41fe7 (patch) | |
| tree | e095ea7eca6ac39e048a82923c98b9816ac6bf57 /archaeological_warehouse/wizards.py | |
| parent | efa898a8c6c55f6f089020ed1439796f9850eda0 (diff) | |
| download | Ishtar-ba59db90b9e1326d78778d00fee5d7e850e41fe7.tar.bz2 Ishtar-ba59db90b9e1326d78778d00fee5d7e850e41fe7.zip  | |
Display warehouse sheet after modification
Diffstat (limited to 'archaeological_warehouse/wizards.py')
| -rw-r--r-- | archaeological_warehouse/wizards.py | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/archaeological_warehouse/wizards.py b/archaeological_warehouse/wizards.py index cfe5be4d4..bdb3959dc 100644 --- a/archaeological_warehouse/wizards.py +++ b/archaeological_warehouse/wizards.py @@ -20,10 +20,11 @@  from django.shortcuts import render_to_response  from django.template import RequestContext +from ishtar_common.forms import reverse_lazy  from ishtar_common.wizards import Wizard  from archaeological_finds.wizards import TreatmentWizard -from archaeological_finds.models import Treatment, TreatmentType +from archaeological_finds.models import Treatment, TreatmentType  import models @@ -56,11 +57,13 @@ class PackagingWizard(TreatmentWizard):  class WarehouseWizard(Wizard):      model = models.Warehouse +    wizard_done_window = reverse_lazy('show-warehouse')  class WarehouseModificationWizard(Wizard):      model = models.Warehouse      modification = True +    wizard_done_window = reverse_lazy('show-warehouse')  class LocalisationWizard(Wizard):  | 
