- Save cover email body as DMS document with new 'email' context type - Show email body separately from attachments in email detail view - Add per-category DMS document assignment in quarterly confirmation (Studiennachweis, Einkommenssituation, Vermögenssituation) - Add VERSION file and context processor for automatic version display - Add MCP server, agent system, import/export, and new migrations - Update compose files and production environment template Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
561 B
Python
16 lines
561 B
Python
from django.contrib import admin
|
|
|
|
from . import destinataere # noqa: F401
|
|
from . import land # noqa: F401
|
|
from . import finanzen # noqa: F401
|
|
from . import foerderung # noqa: F401
|
|
from . import dokumente # noqa: F401
|
|
from . import veranstaltung # noqa: F401
|
|
from . import system # noqa: F401
|
|
from stiftung.agent import admin as agent_admin # noqa: F401
|
|
|
|
# Customize admin site
|
|
admin.site.site_header = "Stiftungsverwaltung Administration"
|
|
admin.site.site_title = "Stiftungsverwaltung Admin"
|
|
admin.site.index_title = "Willkommen zur Stiftungsverwaltung"
|