Private
Public Access
1
0

new form with recaptcha

This commit is contained in:
2024-05-22 20:47:20 +02:00
parent fe620031dc
commit ce978bfe8e
5 changed files with 25 additions and 88 deletions

View File

@@ -763,7 +763,8 @@ urlpatterns = [
re_path(r'^email/send/$', views.sendmail, name='sendmail'),
re_path(r'^email/thankyou/$',
TemplateView.as_view(template_name='thankyou.html'), name='thankyou'),
re_path(r'^email/$', TemplateView.as_view(template_name='email.html'), name='email'),
re_path(r'^email/$', views.sendmail, name='sendmail'),
# TemplateView.as_view(template_name='email.html'), name='email'),
re_path(r'^about', TemplateView.as_view(
template_name='about_us.html'), name='about'),
re_path(r'^brochure/$', TemplateView.as_view(template_name='brochure.html'),