diff --git a/input/templates/input/forms/extern.html b/input/templates/input/forms/extern.html
index 4b3a418..b1d09cd 100755
--- a/input/templates/input/forms/extern.html
+++ b/input/templates/input/forms/extern.html
@@ -1,4 +1,4 @@
-{% extends "input/base.html" %}
+{% extends 'input/base.html' %}
{% load i18n %}
@@ -15,7 +15,7 @@
| Was möchtest du beantragen? |
- {% for title, services in blocks %}
+ {% for title, services in applications %}
{{ title }}
{% for service in services %}
diff --git a/input/views.py b/input/views.py
index 8035507..912bc26 100755
--- a/input/views.py
+++ b/input/views.py
@@ -109,7 +109,7 @@ SERVICES = [
ApplicationType(TYPE_VIS, 'visitenkarten', BusinessCardForm, 'E-Mail-Adressen_und_Visitenkarten#Visitenkarten'),
]
-BLOCKS = [
+APPLICATIONS = [
('Projektförderung', PROJECT_FUNDING),
('Serviceleistungen', SERVICES),
]
@@ -163,7 +163,7 @@ def index(request):
class ApplicationStartView(TemplateView):
template_name = 'input/forms/extern.html'
- extra_context = {'blocks': BLOCKS}
+ extra_context = {'applications': APPLICATIONS}
def post(self, request, *args, **kwargs):
if url := request.POST.get('url'):
|