2021-01-05 12:05:34 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
2021-01-04 11:02:25 +00:00
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
<script type="text/javascript" src="{% static 'admin/js/core.js' %}"></script>
|
|
|
|
<script type="text/javascript" src="{% static 'admin/js/vendor/jquery/jquery.js' %}"></script>
|
|
|
|
<script type="text/javascript" src="{% static 'admin/js/jquery.init.js' %}"></script>
|
|
|
|
|
|
|
|
{{ form.media }}
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/base.css' %}" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/widgets.css' %}" />
|
|
|
|
|
2021-01-04 14:48:32 +00:00
|
|
|
{% block content %}
|
2021-01-04 11:02:25 +00:00
|
|
|
<center>
|
|
|
|
<style>
|
|
|
|
ul > li {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
padding-left: 10;
|
|
|
|
}
|
|
|
|
label.required::after {
|
|
|
|
content: ' *';
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<img src="{% static 'evapp/logo.png' %}" />
|
|
|
|
<h1>
|
|
|
|
E V A - Eintritt, Veränderung, Austritt
|
|
|
|
</h1>
|
2021-01-13 12:30:25 +00:00
|
|
|
<h2>
|
2021-01-12 09:57:21 +00:00
|
|
|
<p>Schritt {{ wizard.steps.step1 }} von {{ wizard.steps.count }}</p>
|
2021-01-13 12:30:25 +00:00
|
|
|
<p>{% if wizard.steps.step1 == 1 %}
|
2021-02-04 08:24:54 +00:00
|
|
|
Angaben zur Person {% endif %}
|
|
|
|
{% if choice == 'IN' %}
|
|
|
|
{% if wizard.steps.step1 == 2 %}
|
2021-01-13 12:30:25 +00:00
|
|
|
Angaben zum neuen Arbeitsverhältnis
|
2021-02-04 08:24:54 +00:00
|
|
|
{% elif wizard.steps.step1 == 3 %}
|
2021-01-13 12:30:25 +00:00
|
|
|
IT-relevante Angaben
|
2021-02-04 08:24:54 +00:00
|
|
|
{% elif wizard.steps.step1 == 4 %}
|
2021-01-13 12:30:25 +00:00
|
|
|
Office-relevante Angaben
|
2021-02-04 08:24:54 +00:00
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
{% if wizard.steps.step1 == 2 %}
|
|
|
|
Veränderungsrelevante Angaben
|
2021-01-13 12:30:25 +00:00
|
|
|
{% endif %}
|
2021-02-04 11:59:23 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if datatable == True %}
|
|
|
|
Bestätigungsschritt
|
2021-02-04 08:24:54 +00:00
|
|
|
{% endif %}
|
2021-01-13 12:30:25 +00:00
|
|
|
</p>
|
|
|
|
</h2>
|
2021-02-04 11:59:23 +00:00
|
|
|
{% if datatable == True %}
|
2021-01-14 11:44:04 +00:00
|
|
|
{% for key, value in data.items %}
|
|
|
|
{{ key }}: {{ value }}<p>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2021-01-04 11:02:25 +00:00
|
|
|
<form action="" method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
<table>
|
2021-02-08 10:28:32 +00:00
|
|
|
{% if wizard.steps.step1 > 1 %}
|
|
|
|
Du hast den Prozess "{{choice_string}}" ausgewählt.
|
2021-02-03 09:53:02 +00:00
|
|
|
{% endif %}
|
2021-01-12 09:57:21 +00:00
|
|
|
{{ wizard.management_form }}
|
|
|
|
{% if wizard.form.forms %}
|
|
|
|
{{ wizard.form.management_form }}
|
|
|
|
{% for form in wizard.form.forms %}
|
|
|
|
{{ form }}
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
{{ wizard.form }}
|
|
|
|
{% endif %}
|
2021-01-04 11:02:25 +00:00
|
|
|
</table>
|
2021-01-12 09:57:21 +00:00
|
|
|
<p>
|
|
|
|
<span style="color: red">*</span> Pflichtfeld
|
|
|
|
<p>
|
|
|
|
{% if wizard.steps.prev %}
|
|
|
|
<button formnovalidate="formnovalidate" name="wizard_goto_step" type="submit" value="{{ wizard.steps.prev }}">Zurück</button>
|
|
|
|
{% endif %}
|
|
|
|
<button type="submit" value="{% trans "Weiter" %}">Weiter</button>
|
2021-01-04 11:02:25 +00:00
|
|
|
</form>
|
2021-01-12 09:57:21 +00:00
|
|
|
<p>
|
2021-01-05 12:05:34 +00:00
|
|
|
</center>
|
|
|
|
{% endblock %}
|