iamkonstantin/newsletter/views.py

9 lines
163 B
Python
Raw Permalink Normal View History

2024-10-07 09:26:43 +02:00
from django.template.response import TemplateResponse
def thanks(request):
return TemplateResponse(
request,
"newsletter/thanks.html",
)