Fix ufmt issues
This commit is contained in:
parent
09a20cf59f
commit
fba93a8f63
|
|
@ -1,19 +1,19 @@
|
||||||
# Generated by Django 3.2.13 on 2023-04-25 12:28
|
# Generated by Django 3.2.13 on 2023-04-25 12:28
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
import django_jsonform.models.fields
|
import django_jsonform.models.fields
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('course', '0004_coursesession_assignment_details_list'),
|
("course", "0004_coursesession_assignment_details_list"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='coursesession',
|
model_name="coursesession",
|
||||||
name='attendance_days',
|
name="attendance_days",
|
||||||
field=django_jsonform.models.fields.JSONField(),
|
field=django_jsonform.models.fields.JSONField(),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@ from django.db import models
|
||||||
from django.db.models import UniqueConstraint
|
from django.db.models import UniqueConstraint
|
||||||
from django.utils.text import slugify
|
from django.utils.text import slugify
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from wagtail.models import Page
|
|
||||||
from django_jsonform.models.fields import JSONField
|
from django_jsonform.models.fields import JSONField
|
||||||
|
from wagtail.models import Page
|
||||||
|
|
||||||
from vbv_lernwelt.core.model_utils import find_available_slug
|
from vbv_lernwelt.core.model_utils import find_available_slug
|
||||||
from vbv_lernwelt.core.models import User
|
from vbv_lernwelt.core.models import User
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue