Files
stiftung-management-system/app/stiftung/migrations/0028_alter_helpbox_page_key.py
Stiftung Development e0c7d0e351 Format code with Black and isort for CI/CD compliance
- Apply Black formatting to all Python files in core and stiftung modules
- Fix import statement ordering with isort
- Ensure all code meets automated quality standards
- Resolve CI/CD pipeline formatting failures
- Maintain consistent code style across the entire codebase
2025-09-06 21:04:07 +02:00

40 lines
1.4 KiB
Python

# Generated by Django 5.0.6 on 2025-09-02 20:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("stiftung", "0027_helpbox_alter_appconfiguration_category"),
]
operations = [
migrations.AlterField(
model_name="helpbox",
name="page_key",
field=models.CharField(
choices=[
("destinataer_new", "Neuer Destinatär"),
("unterstuetzung_new", "Neue Unterstützung"),
("foerderung_new", "Neue Förderung"),
("paechter_new", "Neuer Pächter"),
("laenderei_new", "Neue Länderei"),
("verpachtung_new", "Neue Verpachtung"),
("land_abrechnung_new", "Neue Landabrechnung"),
("person_new", "Neue Person"),
("konto_new", "Neues Konto"),
("verwaltungskosten_new", "Neue Verwaltungskosten"),
("rentmeister_new", "Neuer Rentmeister"),
("dokument_new", "Neues Dokument"),
("user_new", "Neuer Benutzer"),
("csv_import_new", "CSV Import"),
("destinataer_notiz_new", "Destinatär Notiz"),
],
max_length=50,
unique=True,
verbose_name="Seite",
),
),
]