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