- Dokument-Vorlagen-Editor: create/edit/reset document templates (admin) - Upload-Portal: public portal for Nachweis uploads via token - Onboarding: invite Destinatäre via email with multi-step wizard - Bestätigungsschreiben: preview and send confirmation letters - Email settings: SMTP configuration UI - Management command: import_veranstaltung_teilnehmer for bulk participant import Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
61 lines
1.1 KiB
Python
61 lines
1.1 KiB
Python
# models/ package – re-exports all models for backward compatibility
|
||
# Phase 0: Vision 2026 – Code-Refactoring
|
||
|
||
from .system import ( # noqa: F401
|
||
AppConfiguration,
|
||
ApplicationPermission,
|
||
AuditLog,
|
||
BackupJob,
|
||
CSVImport,
|
||
HelpBox,
|
||
)
|
||
|
||
from .dokumente import ( # noqa: F401
|
||
DokumentDatei,
|
||
)
|
||
|
||
from .land import ( # noqa: F401
|
||
DokumentLink,
|
||
Land,
|
||
LandAbrechnung,
|
||
LandVerpachtung,
|
||
Paechter,
|
||
)
|
||
|
||
from .finanzen import ( # noqa: F401
|
||
BankTransaction,
|
||
Rentmeister,
|
||
StiftungsKonto,
|
||
Verwaltungskosten,
|
||
)
|
||
|
||
from .destinataere import ( # noqa: F401
|
||
Destinataer,
|
||
DestinataerEmailEingang,
|
||
EmailEingang,
|
||
DestinataerNotiz,
|
||
DestinataerUnterstuetzung,
|
||
Foerderung,
|
||
OnboardingEinladung,
|
||
Person,
|
||
UnterstuetzungWiederkehrend,
|
||
UploadToken,
|
||
VierteljahresNachweis,
|
||
)
|
||
|
||
from .geschichte import ( # noqa: F401
|
||
GeschichteBild,
|
||
GeschichteSeite,
|
||
StiftungsKalenderEintrag,
|
||
)
|
||
|
||
from .veranstaltungen import ( # noqa: F401
|
||
BriefVorlage,
|
||
Veranstaltung,
|
||
Veranstaltungsteilnehmer,
|
||
)
|
||
|
||
from .vorlagen import ( # noqa: F401
|
||
DokumentVorlage,
|
||
)
|