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