Implement modular report system with 6 report types and composer UI
Refactors the Berichte section from a single hardcoded Jahresbericht into a modular report-building system. Jahresbericht now uses PDFGenerator for corporate identity (logo, colors, headers/footers, cover page). 8 reusable section templates can be freely combined. 6 predefined report templates (Jahres-, Destinatär-, Grundstücks-, Finanz-, Förder-, Pachtbericht) with HTML preview and PDF export. New Bericht-Baukasten UI lets users compose custom reports from individual sections. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -158,6 +158,16 @@ urlpatterns = [
|
||||
views.jahresbericht_pdf,
|
||||
name="jahresbericht_pdf",
|
||||
),
|
||||
path(
|
||||
"berichte/zusammenstellen/",
|
||||
views.bericht_zusammenstellen,
|
||||
name="bericht_zusammenstellen",
|
||||
),
|
||||
path(
|
||||
"berichte/<str:vorlage_key>/",
|
||||
views.bericht_vorlage,
|
||||
name="bericht_vorlage",
|
||||
),
|
||||
# Geschäftsführung URLs
|
||||
path("geschaeftsfuehrung/", views.geschaeftsfuehrung, name="geschaeftsfuehrung"),
|
||||
path("geschaeftsfuehrung/konten/", views.konto_list, name="konto_list"),
|
||||
|
||||
Reference in New Issue
Block a user