контакты (static)

This commit is contained in:
2022-11-12 02:56:19 +03:00
parent ea136f4650
commit 09ef7bac65
3 changed files with 97 additions and 0 deletions

View File

@@ -92,3 +92,12 @@ def tariff(request: HttpRequest) -> HttpResponse:
to_template.update({'SENDER': "Error!"})
pass
return render(request, template, to_template)
def contact(request: HttpRequest) -> HttpResponse:
""" Показывает страничку с контактной информацией
:param request: входящий http-запрос
:return response: исходящий http-ответ
"""
return render(request, "contact.html", {})