8 lines
163 B
Python
8 lines
163 B
Python
from django.template.response import TemplateResponse
|
|
|
|
|
|
def thanks(request):
|
|
return TemplateResponse(
|
|
request,
|
|
"newsletter/thanks.html",
|
|
)
|