From 8d57909a170e0b8df053d773ebbe991cb69353a4 Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 27 Aug 2025 11:58:40 +0200 Subject: [PATCH] =?UTF-8?q?Add=20static=20info=20page=20for=20project=20fu?= =?UTF-8?q?nding=20=E2=89=A5=201,000=20=E2=82=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../input/info_project_funding_gt_1000.html | 12 ++++++++++++ input/urls.py | 5 ++++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 input/templates/input/info_project_funding_gt_1000.html diff --git a/input/templates/input/info_project_funding_gt_1000.html b/input/templates/input/info_project_funding_gt_1000.html new file mode 100644 index 0000000..2109e51 --- /dev/null +++ b/input/templates/input/info_project_funding_gt_1000.html @@ -0,0 +1,12 @@ + + + + + Projektförderung ab 1.000,— EUR + + +

Projektförderung mit einer Gesamtsumme ab 1.000,— EUR

+

Für Projektförderungen ab 1.000,— EUR ist ein öffentlicher Projektplan erforderlich.

+

Dummy-Content – wird bei Freigabe ersetzt.

+ + diff --git a/input/urls.py b/input/urls.py index 807e9bf..682dfb1 100755 --- a/input/urls.py +++ b/input/urls.py @@ -1,5 +1,5 @@ from django.urls import path - +from django.views.generic import TemplateView from .views import ExternView, index, done, authorize, deny, export urlpatterns = [ @@ -9,4 +9,7 @@ urlpatterns = [ path('export', export, name='export'), path('authorize//', authorize, name='authorize'), path('deny//', deny, name='deny'), + path('extern/info/projektfoerderung-ab-1000/', + TemplateView.as_view(template_name='input/info_project_funding_gt_1000.html'), + name="info-foerderprojekt-ab-1000"), ]