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

Este commit está contenido en:
Roman 2025-08-27 11:58:40 +02:00 cometido por Tobias Herre
padre 6698d6a6f3
commit d933f5a32b
Se han modificado 2 ficheros con 16 adiciones y 1 borrados

Ver fichero

@ -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>

Ver fichero

@ -1,5 +1,5 @@
from django.urls import path from django.urls import path
from django.views.generic import TemplateView
from .views import ExternView, index, done, authorize, deny, export from .views import ExternView, index, done, authorize, deny, export
urlpatterns = [ urlpatterns = [
@ -9,4 +9,7 @@ urlpatterns = [
path('export', export, name='export'), path('export', export, name='export'),
path('authorize/<str:choice>/<int:pk>', authorize, name='authorize'), path('authorize/<str:choice>/<int:pk>', authorize, name='authorize'),
path('deny/<str:choice>/<int:pk>', deny, name='deny'), 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"),
] ]