Add static info page for project funding ≥ 1,000 €

This commit is contained in:
Roman 2025-08-27 11:58:40 +02:00 committed by Tobias Herre
parent 6698d6a6f3
commit d933f5a32b
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,12 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Projektförderung ab 1.000,— EUR</title>
</head>
<body>
<h1>Projektförderung mit einer Gesamtsumme ab 1.000,— EUR</h1>
<p>Für Projektförderungen ab 1.000,— EUR ist ein öffentlicher Projektplan erforderlich.</p>
<p><em>Dummy-Content wird bei Freigabe ersetzt.</em></p>
</body>
</html>

View File

@ -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/<str:choice>/<int:pk>', authorize, name='authorize'),
path('deny/<str:choice>/<int:pk>', 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"),
]