added MacOS to OS choices
This commit is contained in:
parent
6352064931
commit
0f55c8f82d
2
TODO
2
TODO
|
@ -1,3 +1,5 @@
|
||||||
* remove dot before "Nextcloud" at login page.
|
* remove dot before "Nextcloud" at login page.
|
||||||
|
|
||||||
* Datumsformat bei Ausgabe ist englisch nicht deutsch.
|
* Datumsformat bei Ausgabe ist englisch nicht deutsch.
|
||||||
|
|
||||||
|
* use new it support adress in evapp/settings.py
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 3.1.4 on 2021-05-18 08:56
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('evapp', '0022_merge_20210517_1058'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='employee',
|
||||||
|
name='os',
|
||||||
|
field=models.CharField(choices=[('UBU', 'Ubuntu (Standard)'), ('WIN', 'Windows (bitte Begründung angeben)'), ('MOS', 'Mac OS (nur wenn Mac gewählt)')], default='UBU', max_length=3, verbose_name='Betriebssystem'),
|
||||||
|
),
|
||||||
|
]
|
|
@ -16,7 +16,8 @@ VENDOR_CHOICES = {'STANDARD': 'Dell Latitude',
|
||||||
'MAC': 'Mac (nur für Grafiker_innen)'}
|
'MAC': 'Mac (nur für Grafiker_innen)'}
|
||||||
|
|
||||||
OS_CHOICES = {'UBU': 'Ubuntu (Standard)',
|
OS_CHOICES = {'UBU': 'Ubuntu (Standard)',
|
||||||
'WIN': 'Windows (bitte Begründung angeben)',}
|
'WIN': 'Windows (bitte Begründung angeben)',
|
||||||
|
'MOS': 'Mac OS (nur wenn Mac gewählt)'}
|
||||||
|
|
||||||
|
|
||||||
LANG_CHOICES = {'GER': 'Deutsch',
|
LANG_CHOICES = {'GER': 'Deutsch',
|
||||||
|
|
Loading…
Reference in New Issue