summaryrefslogtreecommitdiff
path: root/archaeological_finds
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds')
-rw-r--r--archaeological_finds/wizards.py15
1 files changed, 3 insertions, 12 deletions
diff --git a/archaeological_finds/wizards.py b/archaeological_finds/wizards.py
index de16d2069..e5024f10e 100644
--- a/archaeological_finds/wizards.py
+++ b/archaeological_finds/wizards.py
@@ -50,25 +50,16 @@ class FindWizard(Wizard):
if base_finds:
return base_finds[0].context_record
- #def get_template_context(self, request, storage, form=None):
def get_context_data(self, form, **kwargs):
"""
Get the operation and context record "reminder" on top of wizard forms
"""
context = super(FindWizard, self).get_context_data(form, **kwargs)
current_cr = self.get_current_contextrecord()
- if not current_cr:
+ if not current_cr or self.steps.current.startswith('select-'):
return context
- operation = current_cr.operation
- items = []
- if hasattr(operation, 'code_patriarche') and operation.code_patriarche:
- items.append(unicode(operation.code_patriarche))
- items.append("-".join((unicode(operation.year),
- unicode(operation.operation_code))))
- reminder = unicode(_("Current operation: ")) + u" - ".join(items)
- reminder += u"<br/>" + unicode(_("Current context record: "))\
- + unicode(current_cr.label)
- context['reminder'] = mark_safe(reminder)
+ context['reminders'] = ((_("Operation"), unicode(current_cr.operation)),
+ (_(u"Context record"), unicode(current_cr)))
return context
def get_extra_model(self, dct, form_list):