template fixed for CHANGE-Process
This commit is contained in:
parent
49718e66ff
commit
2b613b447f
|
@ -33,15 +33,28 @@
|
|||
<h2>
|
||||
<p>Schritt {{ wizard.steps.step1 }} von {{ wizard.steps.count }}</p>
|
||||
<p>{% if wizard.steps.step1 == 1 %}
|
||||
Angaben zur Person
|
||||
{% elif wizard.steps.step1 == 2 %}
|
||||
Angaben zur Person {% endif %}
|
||||
{% if choice == 'IN' %}
|
||||
{% if wizard.steps.step1 == 2 %}
|
||||
Angaben zum neuen Arbeitsverhältnis
|
||||
{% elif wizard.steps.step1 == 3 and choice == 'IN' %}
|
||||
{% elif wizard.steps.step1 == 3 %}
|
||||
IT-relevante Angaben
|
||||
{% elif wizard.steps.step1 == 4 and choice == 'IN' %}
|
||||
{% elif wizard.steps.step1 == 4 %}
|
||||
Office-relevante Angaben
|
||||
{% else %}
|
||||
{% elif wizards.steps.step1 == 5 %}
|
||||
Bestätigungsschritt
|
||||
{% else %}
|
||||
Achtung! Unerkannter Schritt
|
||||
{% endif %}
|
||||
{% else %}
|
||||
{% if wizard.steps.step1 == 2 %}
|
||||
Veränderungsrelevante Angaben
|
||||
{% elif wizards.steps.step1 == 3 %}
|
||||
Bestätigungsschritt
|
||||
{% else %}
|
||||
Achtung! Unerkannter Schritt
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
</p>
|
||||
</h2>
|
||||
|
|
|
@ -6,6 +6,7 @@ urlpatterns = [
|
|||
path('', EvaFormView.as_view(condition_dict = {'1': long_process,
|
||||
'2': long_process,
|
||||
'3': long_process,
|
||||
|
||||
'4': change_process,}),
|
||||
name='evaform'),
|
||||
path('success', success, name='success')
|
||||
|
|
Loading…
Reference in New Issue