Skip to content
Snippets Groups Projects
Verified Commit b77b04a6 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Use black as default color for foreground

parent 8cff5468
No related branches found
No related tags found
1 merge request!39Resolve "Models for advanced features from SchoolApps (imported from Untis)"
......@@ -91,7 +91,7 @@ class Migration(migrations.Migration):
('extended_data', django.contrib.postgres.fields.jsonb.JSONField(default=dict, editable=False)),
('short_name', models.CharField(max_length=10, verbose_name='Short name')),
('name', models.CharField(max_length=50, verbose_name='Long name')),
('colour_fg', colorfield.fields.ColorField(default='#FFFFFF', max_length=18)),
('colour_fg', colorfield.fields.ColorField(default='#000000', max_length=18)),
('colour_bg', colorfield.fields.ColorField(default='#FFFFFF', max_length=18)),
],
options={
......
......@@ -644,7 +644,7 @@ class Holiday(ExtensibleModel):
class SupervisionArea(ExtensibleModel):
short_name = models.CharField(verbose_name=_("Short name"), max_length=10)
name = models.CharField(verbose_name=_("Long name"), max_length=50)
colour_fg = ColorField()
colour_fg = ColorField(default="#000000")
colour_bg = ColorField()
class Meta:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment