WMDE
/
eva
forked from tohe/eva
7
1
Fork 0

removed deprecated files

This commit is contained in:
Marike Voßbeck 2026-03-17 16:56:40 +01:00
parent 90b5e0b00c
commit a10b271a00
3 changed files with 0 additions and 67 deletions

View File

@ -1,7 +0,0 @@
from reportlab.pdfgen import canvas
def hello(c):
c.drawString(100,100,"Hello World")
c = canvas.Canvas("hello.pdf")
hello(c)
c.showPage()
c.save()

View File

@ -1,17 +0,0 @@
# Generated by Django 5.2.8 on 2026-03-03 14:36
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('veraenderung', '0010_alter_employee_landline'),
]
operations = [
migrations.RemoveField(
model_name='employee',
name='jobdescription_english',
),
]

View File

@ -1,43 +0,0 @@
# Generated by Django 5.2.8 on 2026-03-03 15:34
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('veraenderung', '0011_remove_employee_jobdescription_english'),
]
operations = [
migrations.AlterField(
model_name='employee',
name='keyboard',
field=models.CharField(blank=True, choices=[('DE', 'Deutsch'), ('US', 'USA'), ('OT', 'Anderes (Bitte unten angeben)')], default='DE', max_length=2, null=True, verbose_name='Tastaturlayout'),
),
migrations.AlterField(
model_name='employee',
name='language',
field=models.CharField(blank=True, choices=[('GER', 'Deutsch'), ('ENG', 'English')], default='GER', max_length=3, verbose_name='Sprache für Onboarding'),
),
migrations.AlterField(
model_name='employee',
name='laptop',
field=models.CharField(blank=True, choices=[('NEIN', 'Nein'), ('JA', 'Ja')], default='NEIN', max_length=8, verbose_name='Wird ein neuer Laptop gebraucht?'),
),
migrations.AlterField(
model_name='employee',
name='onboarding',
field=models.CharField(choices=[('NEIN', 'Nein'), ('JA', 'Ja')], max_length=8, verbose_name='Wird wieder ein Onboarding gebraucht?'),
),
migrations.AlterField(
model_name='employee',
name='os',
field=models.CharField(blank=True, choices=[('FED', 'Fedora (Standard)'), ('WIN', 'Windows (bitte Begründung angeben)'), ('MOS', 'Mac OS (nur wenn Mac gewählt)'), ('UBU', 'Ubuntu')], default='FED', max_length=3, null=True, verbose_name='Betriebssystem'),
),
migrations.AlterField(
model_name='employee',
name='transponder',
field=models.CharField(blank=True, choices=[('NORM', 'Transponder wird beibehalten'), ('SPECIAL', 'Besondere Schließungen (bitte angeben)'), ('NOTRANS', 'Kein Transponder')], default='NORM', max_length=7),
),
]