minor changes in the CHANGE process
This commit is contained in:
parent
b5b840d230
commit
3f92e323bf
|
@ -45,7 +45,7 @@
|
|||
{% endif %}
|
||||
</p>
|
||||
</h2>
|
||||
{% if wizard.steps.step1 == 5 or choice == 'CHANGE' %}
|
||||
{% if wizard.steps.step1 == 5 or choice == 'CHANGE' and wizards.steps.step1 == 3 %}
|
||||
{% for key, value in data.items %}
|
||||
{{ key }}: {{ value }}<p>
|
||||
{% endfor %}
|
||||
|
|
|
@ -74,6 +74,7 @@ class EvaFormView(CookieWizardView):
|
|||
if choice == 'CHANGE':
|
||||
print("process choosen: CHANGE")
|
||||
form = ChangeForm(data)
|
||||
# self.form_list = [PersonalForm, ChangeForm, DummyForm,]
|
||||
elif choice == 'OUT':
|
||||
print("process choosen: OUT")
|
||||
form = WorkingForm(data)
|
||||
|
|
Loading…
Reference in New Issue