Einleitung and Geltungsbereich now draggable

This commit is contained in:
2026-02-12 15:05:52 +01:00
parent c125238f12
commit a0495fdea0
4 changed files with 60 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
# Generated by Django 6.0.1 on 2026-02-12 13:43
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('dokumente', '0011_alter_einleitung_options_and_more'),
]
operations = [
migrations.AlterModelOptions(
name='einleitung',
options={'ordering': ['order'], 'verbose_name': 'Einleitungs-Abschnitt', 'verbose_name_plural': 'Einleitung'},
),
migrations.AlterModelOptions(
name='geltungsbereich',
options={'ordering': ['order'], 'verbose_name': 'Geltungsbereichs-Abschnitt', 'verbose_name_plural': 'Geltungsbereich'},
),
]