Ticket #8099: formwizard_bug.diff

File formwizard_bug.diff, 581 bytes (added by remo, 16 years ago)
  • django/contrib/formtools/wizard.py

     
    210210        """
    211211        context = context or {}
    212212        context.update(self.extra_context)
    213         return render_to_response(self.get_template(self.step), dict(context,
     213        return render_to_response(self.get_template(step), dict(context,
    214214            step_field=self.step_field_name,
    215215            step0=step,
    216216            step=step + 1,
Back to Top