diff --git a/evapp/__init__.py b/austritt/__init__.py similarity index 100% rename from evapp/__init__.py rename to austritt/__init__.py diff --git a/offboarding/admin.py b/austritt/admin.py similarity index 100% rename from offboarding/admin.py rename to austritt/admin.py diff --git a/offboarding/apps.py b/austritt/apps.py similarity index 72% rename from offboarding/apps.py rename to austritt/apps.py index 4f4a80f..bc1873d 100644 --- a/offboarding/apps.py +++ b/austritt/apps.py @@ -2,4 +2,4 @@ from django.apps import AppConfig class EvappConfig(AppConfig): - name = 'offboarding' + name = 'austritt' diff --git a/offboarding/forms.py b/austritt/forms.py similarity index 100% rename from offboarding/forms.py rename to austritt/forms.py diff --git a/evapp/migrations/0001_initial.py b/austritt/migrations/0001_initial.py similarity index 100% rename from evapp/migrations/0001_initial.py rename to austritt/migrations/0001_initial.py diff --git a/evapp/migrations/0002_auto_20210914_1055.py b/austritt/migrations/0002_auto_20210914_1055.py similarity index 89% rename from evapp/migrations/0002_auto_20210914_1055.py rename to austritt/migrations/0002_auto_20210914_1055.py index 0797935..9f6a226 100644 --- a/evapp/migrations/0002_auto_20210914_1055.py +++ b/austritt/migrations/0002_auto_20210914_1055.py @@ -6,7 +6,7 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ('evapp', '0001_initial'), + ('austritt', '0001_initial'), ] operations = [ diff --git a/evapp/migrations/0003_auto_20220208_0955.py b/austritt/migrations/0003_auto_20220208_0955.py similarity index 94% rename from evapp/migrations/0003_auto_20220208_0955.py rename to austritt/migrations/0003_auto_20220208_0955.py index e91daf4..78fa0aa 100644 --- a/evapp/migrations/0003_auto_20220208_0955.py +++ b/austritt/migrations/0003_auto_20220208_0955.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0002_auto_20210914_1055'), + ('austritt', '0002_auto_20210914_1055'), ] operations = [ diff --git a/offboarding/migrations/0004_alter_employee_accounts_alter_employee_department.py b/austritt/migrations/0004_alter_employee_accounts_alter_employee_department.py similarity index 95% rename from offboarding/migrations/0004_alter_employee_accounts_alter_employee_department.py rename to austritt/migrations/0004_alter_employee_accounts_alter_employee_department.py index 3456ec8..b114b51 100644 --- a/offboarding/migrations/0004_alter_employee_accounts_alter_employee_department.py +++ b/austritt/migrations/0004_alter_employee_accounts_alter_employee_department.py @@ -7,7 +7,7 @@ import multiselectfield.db.fields class Migration(migrations.Migration): dependencies = [ - ('evapp', '0003_auto_20220208_0955'), + ('austritt', '0003_auto_20220208_0955'), ] operations = [ diff --git a/veränderung/migrations/0005_alter_employee_accounts.py b/austritt/migrations/0005_alter_employee_accounts.py similarity index 89% rename from veränderung/migrations/0005_alter_employee_accounts.py rename to austritt/migrations/0005_alter_employee_accounts.py index ca42bb6..7af5d26 100644 --- a/veränderung/migrations/0005_alter_employee_accounts.py +++ b/austritt/migrations/0005_alter_employee_accounts.py @@ -7,7 +7,7 @@ import multiselectfield.db.fields class Migration(migrations.Migration): dependencies = [ - ('evapp', '0004_alter_employee_accounts_alter_employee_department'), + ('austritt', '0004_alter_employee_accounts_alter_employee_department'), ] operations = [ diff --git a/offboarding/migrations/0006_remove_employee_vendor_employee_framework_and_more.py b/austritt/migrations/0006_remove_employee_vendor_employee_framework_and_more.py similarity index 95% rename from offboarding/migrations/0006_remove_employee_vendor_employee_framework_and_more.py rename to austritt/migrations/0006_remove_employee_vendor_employee_framework_and_more.py index b34e5fd..e511b28 100644 --- a/offboarding/migrations/0006_remove_employee_vendor_employee_framework_and_more.py +++ b/austritt/migrations/0006_remove_employee_vendor_employee_framework_and_more.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0005_alter_employee_accounts'), + ('austritt', '0005_alter_employee_accounts'), ] operations = [ diff --git a/veränderung/migrations/0007_remove_employee_screen_and_more.py b/austritt/migrations/0007_remove_employee_screen_and_more.py similarity index 93% rename from veränderung/migrations/0007_remove_employee_screen_and_more.py rename to austritt/migrations/0007_remove_employee_screen_and_more.py index 87124e9..cc501f6 100644 --- a/veränderung/migrations/0007_remove_employee_screen_and_more.py +++ b/austritt/migrations/0007_remove_employee_screen_and_more.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0006_remove_employee_vendor_employee_framework_and_more'), + ('austritt', '0006_remove_employee_vendor_employee_framework_and_more'), ] operations = [ diff --git a/evapp/migrations/__init__.py b/austritt/migrations/__init__.py similarity index 100% rename from evapp/migrations/__init__.py rename to austritt/migrations/__init__.py diff --git a/veränderung/models.py b/austritt/models.py similarity index 99% rename from veränderung/models.py rename to austritt/models.py index e07fcac..ca5e9aa 100644 --- a/veränderung/models.py +++ b/austritt/models.py @@ -1,6 +1,7 @@ from django.db import models from multiselectfield import MultiSelectField from django.utils.translation import gettext_lazy as _ +from eintritt.models import Employee # ATTENTION!!! # No key should be used twice in any of these dicts because of the diff --git a/evapp/settings.py b/austritt/settings.py similarity index 100% rename from evapp/settings.py rename to austritt/settings.py diff --git a/evapp/static/evapp/logo.png b/austritt/static/evapp/logo.png similarity index 100% rename from evapp/static/evapp/logo.png rename to austritt/static/evapp/logo.png diff --git a/offboarding/templates/account/login.html b/austritt/templates/account/login.html similarity index 100% rename from offboarding/templates/account/login.html rename to austritt/templates/account/login.html diff --git a/evapp/templates/evapp/dataloop.txt b/austritt/templates/austritt/dataloop.txt similarity index 100% rename from evapp/templates/evapp/dataloop.txt rename to austritt/templates/austritt/dataloop.txt diff --git a/evapp/templates/evapp/department_mail.txt b/austritt/templates/austritt/department_mail.txt similarity index 100% rename from evapp/templates/evapp/department_mail.txt rename to austritt/templates/austritt/department_mail.txt diff --git a/offboarding/templates/offboarding/employee_form.html b/austritt/templates/austritt/employee_form.html similarity index 100% rename from offboarding/templates/offboarding/employee_form.html rename to austritt/templates/austritt/employee_form.html diff --git a/evapp/templates/registration/login.html b/austritt/templates/registration/login.html similarity index 100% rename from evapp/templates/registration/login.html rename to austritt/templates/registration/login.html diff --git a/evapp/tests.py b/austritt/tests.py similarity index 100% rename from evapp/tests.py rename to austritt/tests.py diff --git a/evapp/urls.py b/austritt/urls.py similarity index 100% rename from evapp/urls.py rename to austritt/urls.py diff --git a/evapp/views.py b/austritt/views.py similarity index 99% rename from evapp/views.py rename to austritt/views.py index 67097f3..90d5b8f 100644 --- a/evapp/views.py +++ b/austritt/views.py @@ -46,7 +46,7 @@ def change_process(wizard): class EvaFormView(LoginRequiredMixin, CookieWizardView): - template_name = 'evapp/employee_form.html' + template_name = 'austritt/employee_form.html' form_list = [PersonalForm, WorkingForm, ITForm, OfficeForm, ChangeForm, DummyForm] instance = None choice = 'IN' diff --git a/offboarding/__init__.py b/eintritt/__init__.py similarity index 100% rename from offboarding/__init__.py rename to eintritt/__init__.py diff --git a/evapp/admin.py b/eintritt/admin.py similarity index 100% rename from evapp/admin.py rename to eintritt/admin.py diff --git a/evapp/apps.py b/eintritt/apps.py similarity index 74% rename from evapp/apps.py rename to eintritt/apps.py index d5ded80..c16d342 100644 --- a/evapp/apps.py +++ b/eintritt/apps.py @@ -2,6 +2,6 @@ from django.apps import AppConfig # define the configuration class for the 'evapp' application -class EvappConfig(AppConfig): +class EintrittConfig(AppConfig): # give the app a name - name = 'evapp' + name = 'eintritt' diff --git a/evapp/forms.py b/eintritt/forms.py similarity index 100% rename from evapp/forms.py rename to eintritt/forms.py diff --git a/offboarding/migrations/0001_initial.py b/eintritt/migrations/0001_initial.py similarity index 100% rename from offboarding/migrations/0001_initial.py rename to eintritt/migrations/0001_initial.py diff --git a/offboarding/migrations/0002_auto_20210914_1055.py b/eintritt/migrations/0002_auto_20210914_1055.py similarity index 89% rename from offboarding/migrations/0002_auto_20210914_1055.py rename to eintritt/migrations/0002_auto_20210914_1055.py index 0797935..3f73d3b 100644 --- a/offboarding/migrations/0002_auto_20210914_1055.py +++ b/eintritt/migrations/0002_auto_20210914_1055.py @@ -6,7 +6,7 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ('evapp', '0001_initial'), + ('eintritt', '0001_initial'), ] operations = [ diff --git a/veränderung/migrations/0003_auto_20220208_0955.py b/eintritt/migrations/0003_auto_20220208_0955.py similarity index 94% rename from veränderung/migrations/0003_auto_20220208_0955.py rename to eintritt/migrations/0003_auto_20220208_0955.py index e91daf4..d469e6a 100644 --- a/veränderung/migrations/0003_auto_20220208_0955.py +++ b/eintritt/migrations/0003_auto_20220208_0955.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0002_auto_20210914_1055'), + ('eintritt', '0002_auto_20210914_1055'), ] operations = [ diff --git a/evapp/migrations/0004_alter_employee_accounts_alter_employee_department.py b/eintritt/migrations/0004_alter_employee_accounts_alter_employee_department.py similarity index 95% rename from evapp/migrations/0004_alter_employee_accounts_alter_employee_department.py rename to eintritt/migrations/0004_alter_employee_accounts_alter_employee_department.py index 3456ec8..1d70482 100644 --- a/evapp/migrations/0004_alter_employee_accounts_alter_employee_department.py +++ b/eintritt/migrations/0004_alter_employee_accounts_alter_employee_department.py @@ -7,7 +7,7 @@ import multiselectfield.db.fields class Migration(migrations.Migration): dependencies = [ - ('evapp', '0003_auto_20220208_0955'), + ('eintritt', '0003_auto_20220208_0955'), ] operations = [ diff --git a/evapp/migrations/0005_alter_employee_accounts.py b/eintritt/migrations/0005_alter_employee_accounts.py similarity index 89% rename from evapp/migrations/0005_alter_employee_accounts.py rename to eintritt/migrations/0005_alter_employee_accounts.py index ca42bb6..277f07a 100644 --- a/evapp/migrations/0005_alter_employee_accounts.py +++ b/eintritt/migrations/0005_alter_employee_accounts.py @@ -7,7 +7,7 @@ import multiselectfield.db.fields class Migration(migrations.Migration): dependencies = [ - ('evapp', '0004_alter_employee_accounts_alter_employee_department'), + ('eintritt', '0004_alter_employee_accounts_alter_employee_department'), ] operations = [ diff --git a/veränderung/migrations/0006_remove_employee_vendor_employee_framework_and_more.py b/eintritt/migrations/0006_remove_employee_vendor_employee_framework_and_more.py similarity index 95% rename from veränderung/migrations/0006_remove_employee_vendor_employee_framework_and_more.py rename to eintritt/migrations/0006_remove_employee_vendor_employee_framework_and_more.py index b34e5fd..7178c43 100644 --- a/veränderung/migrations/0006_remove_employee_vendor_employee_framework_and_more.py +++ b/eintritt/migrations/0006_remove_employee_vendor_employee_framework_and_more.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0005_alter_employee_accounts'), + ('eintritt', '0005_alter_employee_accounts'), ] operations = [ diff --git a/offboarding/migrations/0007_remove_employee_screen_and_more.py b/eintritt/migrations/0007_remove_employee_screen_and_more.py similarity index 93% rename from offboarding/migrations/0007_remove_employee_screen_and_more.py rename to eintritt/migrations/0007_remove_employee_screen_and_more.py index 87124e9..1e18e66 100644 --- a/offboarding/migrations/0007_remove_employee_screen_and_more.py +++ b/eintritt/migrations/0007_remove_employee_screen_and_more.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0006_remove_employee_vendor_employee_framework_and_more'), + ('eintritt', '0006_remove_employee_vendor_employee_framework_and_more'), ] operations = [ diff --git a/offboarding/migrations/__init__.py b/eintritt/migrations/__init__.py similarity index 100% rename from offboarding/migrations/__init__.py rename to eintritt/migrations/__init__.py diff --git a/evapp/models.py b/eintritt/models.py similarity index 100% rename from evapp/models.py rename to eintritt/models.py diff --git a/offboarding/settings.py b/eintritt/settings.py similarity index 100% rename from offboarding/settings.py rename to eintritt/settings.py diff --git a/evapp/static/evapp/offboarding.png b/eintritt/static/evapp/austritt.png similarity index 100% rename from evapp/static/evapp/offboarding.png rename to eintritt/static/evapp/austritt.png diff --git a/evapp/static/evapp/onboarding1.png b/eintritt/static/evapp/eintritt.png similarity index 100% rename from evapp/static/evapp/onboarding1.png rename to eintritt/static/evapp/eintritt.png diff --git a/offboarding/static/evapp/logo.png b/eintritt/static/evapp/logo.png similarity index 100% rename from offboarding/static/evapp/logo.png rename to eintritt/static/evapp/logo.png diff --git a/evapp/static/evapp/veränderung.png b/eintritt/static/evapp/veraenderung.png similarity index 100% rename from evapp/static/evapp/veränderung.png rename to eintritt/static/evapp/veraenderung.png diff --git a/evapp/templates/account/login.html b/eintritt/templates/account/login.html similarity index 100% rename from evapp/templates/account/login.html rename to eintritt/templates/account/login.html diff --git a/offboarding/templates/offboarding/dataloop.txt b/eintritt/templates/eintritt/dataloop.txt similarity index 100% rename from offboarding/templates/offboarding/dataloop.txt rename to eintritt/templates/eintritt/dataloop.txt diff --git a/offboarding/templates/offboarding/department_mail.txt b/eintritt/templates/eintritt/department_mail.txt similarity index 100% rename from offboarding/templates/offboarding/department_mail.txt rename to eintritt/templates/eintritt/department_mail.txt diff --git a/evapp/templates/evapp/employee_form.html b/eintritt/templates/eintritt/employee_form.html similarity index 100% rename from evapp/templates/evapp/employee_form.html rename to eintritt/templates/eintritt/employee_form.html diff --git a/offboarding/templates/registration/login.html b/eintritt/templates/registration/login.html similarity index 100% rename from offboarding/templates/registration/login.html rename to eintritt/templates/registration/login.html diff --git a/offboarding/tests.py b/eintritt/tests.py similarity index 100% rename from offboarding/tests.py rename to eintritt/tests.py diff --git a/offboarding/urls.py b/eintritt/urls.py similarity index 100% rename from offboarding/urls.py rename to eintritt/urls.py diff --git a/offboarding/views.py b/eintritt/views.py similarity index 99% rename from offboarding/views.py rename to eintritt/views.py index 74fefc7..b2a7c26 100644 --- a/offboarding/views.py +++ b/eintritt/views.py @@ -46,7 +46,7 @@ def change_process(wizard): class EvaFormView(LoginRequiredMixin, CookieWizardView): - template_name = 'offboarding/employee_form.html' + template_name = 'eintritt/employee_form.html' form_list = [PersonalForm, WorkingForm, ITForm, OfficeForm, ChangeForm, DummyForm] instance = None choice = 'IN' diff --git a/eva/settings_development.py b/eva/settings_development.py index 55986d6..0e63671 100644 --- a/eva/settings_development.py +++ b/eva/settings_development.py @@ -40,9 +40,9 @@ ALLOWED_HOSTS = ['*'] INSTALLED_APPS = [ 'home', - 'offboarding', - 'veränderung', - 'evapp.apps.EvappConfig', + 'austritt', + 'veraenderung', + 'eintritt.apps.EintrittConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', diff --git a/eva/urls.py b/eva/urls.py index 49ac613..5f709fb 100644 --- a/eva/urls.py +++ b/eva/urls.py @@ -17,10 +17,10 @@ from django.contrib import admin from django.urls import path, include urlpatterns = [ - path('onboarding/', include('evapp.urls')), + path('eintritt/', include('eintritt.urls')), path('', include("home.urls")), - path('offboarding/', include("offboarding.urls")), - path('veränderung/', include("veränderung.urls")), + path('austritt/', include("austritt.urls")), + path('veraenderung/', include("veraenderung.urls")), path('admin/', admin.site.urls), path('accounts/', include('allauth.urls')), diff --git a/home/templates/home/index.html b/home/templates/home/index.html index df32d03..ebaa561 100644 --- a/home/templates/home/index.html +++ b/home/templates/home/index.html @@ -60,23 +60,23 @@ -

Choose Your Destination

+

Wählen Sie Ihren nächsten Schritt

- - + +
- - + +
- - + +
diff --git a/veränderung/__init__.py b/veraenderung/__init__.py similarity index 100% rename from veränderung/__init__.py rename to veraenderung/__init__.py diff --git a/veränderung/admin.py b/veraenderung/admin.py similarity index 100% rename from veränderung/admin.py rename to veraenderung/admin.py diff --git a/veränderung/apps.py b/veraenderung/apps.py similarity index 71% rename from veränderung/apps.py rename to veraenderung/apps.py index f8024ad..d041639 100644 --- a/veränderung/apps.py +++ b/veraenderung/apps.py @@ -2,4 +2,4 @@ from django.apps import AppConfig class EvappConfig(AppConfig): - name = 'veränderung' + name = 'veraenderung' diff --git a/veränderung/forms.py b/veraenderung/forms.py similarity index 97% rename from veränderung/forms.py rename to veraenderung/forms.py index 662df53..108dbc5 100644 --- a/veränderung/forms.py +++ b/veraenderung/forms.py @@ -20,7 +20,7 @@ class EvaForm(ModelForm): '''this base class provides the required css class for all forms''' required_css_class = 'required' -TYPE_CHOICES = {'IN': 'Eintritt', 'CHANGE': 'Veränderung', 'OUT': 'Austritt'} +TYPE_CHOICES = {'IN': 'Eintritt', 'CHANGE': 'veraenderung', 'OUT': 'Austritt'} class PersonalForm(EvaForm): # TODO: comment this back in to use implementation of change or exit process diff --git a/veränderung/migrations/0001_initial.py b/veraenderung/migrations/0001_initial.py similarity index 100% rename from veränderung/migrations/0001_initial.py rename to veraenderung/migrations/0001_initial.py diff --git a/veränderung/migrations/0002_auto_20210914_1055.py b/veraenderung/migrations/0002_auto_20210914_1055.py similarity index 88% rename from veränderung/migrations/0002_auto_20210914_1055.py rename to veraenderung/migrations/0002_auto_20210914_1055.py index 0797935..cc1cec3 100644 --- a/veränderung/migrations/0002_auto_20210914_1055.py +++ b/veraenderung/migrations/0002_auto_20210914_1055.py @@ -6,7 +6,7 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ('evapp', '0001_initial'), + ('veraenderung', '0001_initial'), ] operations = [ diff --git a/offboarding/migrations/0003_auto_20220208_0955.py b/veraenderung/migrations/0003_auto_20220208_0955.py similarity index 94% rename from offboarding/migrations/0003_auto_20220208_0955.py rename to veraenderung/migrations/0003_auto_20220208_0955.py index e91daf4..89902f6 100644 --- a/offboarding/migrations/0003_auto_20220208_0955.py +++ b/veraenderung/migrations/0003_auto_20220208_0955.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0002_auto_20210914_1055'), + ('veraenderung', '0002_auto_20210914_1055'), ] operations = [ diff --git a/veränderung/migrations/0004_alter_employee_accounts_alter_employee_department.py b/veraenderung/migrations/0004_alter_employee_accounts_alter_employee_department.py similarity index 95% rename from veränderung/migrations/0004_alter_employee_accounts_alter_employee_department.py rename to veraenderung/migrations/0004_alter_employee_accounts_alter_employee_department.py index 3456ec8..51fe8b3 100644 --- a/veränderung/migrations/0004_alter_employee_accounts_alter_employee_department.py +++ b/veraenderung/migrations/0004_alter_employee_accounts_alter_employee_department.py @@ -7,7 +7,7 @@ import multiselectfield.db.fields class Migration(migrations.Migration): dependencies = [ - ('evapp', '0003_auto_20220208_0955'), + ('veraenderung', '0003_auto_20220208_0955'), ] operations = [ diff --git a/offboarding/migrations/0005_alter_employee_accounts.py b/veraenderung/migrations/0005_alter_employee_accounts.py similarity index 89% rename from offboarding/migrations/0005_alter_employee_accounts.py rename to veraenderung/migrations/0005_alter_employee_accounts.py index ca42bb6..a76d650 100644 --- a/offboarding/migrations/0005_alter_employee_accounts.py +++ b/veraenderung/migrations/0005_alter_employee_accounts.py @@ -7,7 +7,7 @@ import multiselectfield.db.fields class Migration(migrations.Migration): dependencies = [ - ('evapp', '0004_alter_employee_accounts_alter_employee_department'), + ('veraenderung', '0004_alter_employee_accounts_alter_employee_department'), ] operations = [ diff --git a/evapp/migrations/0006_remove_employee_vendor_employee_framework_and_more.py b/veraenderung/migrations/0006_remove_employee_vendor_employee_framework_and_more.py similarity index 95% rename from evapp/migrations/0006_remove_employee_vendor_employee_framework_and_more.py rename to veraenderung/migrations/0006_remove_employee_vendor_employee_framework_and_more.py index b34e5fd..15f247e 100644 --- a/evapp/migrations/0006_remove_employee_vendor_employee_framework_and_more.py +++ b/veraenderung/migrations/0006_remove_employee_vendor_employee_framework_and_more.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0005_alter_employee_accounts'), + ('veraenderung', '0005_alter_employee_accounts'), ] operations = [ diff --git a/evapp/migrations/0007_remove_employee_screen_and_more.py b/veraenderung/migrations/0007_remove_employee_screen_and_more.py similarity index 92% rename from evapp/migrations/0007_remove_employee_screen_and_more.py rename to veraenderung/migrations/0007_remove_employee_screen_and_more.py index 87124e9..5435b76 100644 --- a/evapp/migrations/0007_remove_employee_screen_and_more.py +++ b/veraenderung/migrations/0007_remove_employee_screen_and_more.py @@ -6,7 +6,7 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('evapp', '0006_remove_employee_vendor_employee_framework_and_more'), + ('veraenderung', '0006_remove_employee_vendor_employee_framework_and_more'), ] operations = [ diff --git a/veränderung/migrations/__init__.py b/veraenderung/migrations/__init__.py similarity index 100% rename from veränderung/migrations/__init__.py rename to veraenderung/migrations/__init__.py diff --git a/offboarding/models.py b/veraenderung/models.py similarity index 99% rename from offboarding/models.py rename to veraenderung/models.py index e07fcac..ca5e9aa 100644 --- a/offboarding/models.py +++ b/veraenderung/models.py @@ -1,6 +1,7 @@ from django.db import models from multiselectfield import MultiSelectField from django.utils.translation import gettext_lazy as _ +from eintritt.models import Employee # ATTENTION!!! # No key should be used twice in any of these dicts because of the diff --git a/veränderung/settings.py b/veraenderung/settings.py similarity index 100% rename from veränderung/settings.py rename to veraenderung/settings.py diff --git a/veränderung/static/evapp/logo.png b/veraenderung/static/evapp/logo.png similarity index 100% rename from veränderung/static/evapp/logo.png rename to veraenderung/static/evapp/logo.png diff --git a/veränderung/templates/account/login.html b/veraenderung/templates/account/login.html similarity index 100% rename from veränderung/templates/account/login.html rename to veraenderung/templates/account/login.html diff --git a/veränderung/templates/registration/login.html b/veraenderung/templates/registration/login.html similarity index 100% rename from veränderung/templates/registration/login.html rename to veraenderung/templates/registration/login.html diff --git a/veränderung/templates/veränderung/dataloop.txt b/veraenderung/templates/veraenderung/dataloop.txt similarity index 100% rename from veränderung/templates/veränderung/dataloop.txt rename to veraenderung/templates/veraenderung/dataloop.txt diff --git a/veränderung/templates/veränderung/department_mail.txt b/veraenderung/templates/veraenderung/department_mail.txt similarity index 100% rename from veränderung/templates/veränderung/department_mail.txt rename to veraenderung/templates/veraenderung/department_mail.txt diff --git a/veränderung/templates/veränderung/employee_form.html b/veraenderung/templates/veraenderung/employee_form.html similarity index 100% rename from veränderung/templates/veränderung/employee_form.html rename to veraenderung/templates/veraenderung/employee_form.html diff --git a/veränderung/tests.py b/veraenderung/tests.py similarity index 100% rename from veränderung/tests.py rename to veraenderung/tests.py diff --git a/veränderung/urls.py b/veraenderung/urls.py similarity index 100% rename from veränderung/urls.py rename to veraenderung/urls.py diff --git a/veränderung/views.py b/veraenderung/views.py similarity index 99% rename from veränderung/views.py rename to veraenderung/views.py index 1d33197..5ce871b 100644 --- a/veränderung/views.py +++ b/veraenderung/views.py @@ -46,7 +46,7 @@ def change_process(wizard): class EvaFormView(LoginRequiredMixin, CookieWizardView): - template_name = 'veränderung/employee_form.html' + template_name = 'veraenderung/employee_form.html' form_list = [PersonalForm, WorkingForm, ITForm, OfficeForm, ChangeForm, DummyForm] instance = None choice = 'IN'