diff --git a/public/urls.py b/public/urls.py index 388da71..9425cba 100644 --- a/public/urls.py +++ b/public/urls.py @@ -1,10 +1,11 @@ from django.urls import path, include -from .views import HomeView +from .views import HomeView, DemoTemplateView app_name = "frontend" urlpatterns = [ path('', HomeView.as_view(), name="home"), path('api/places/', include("public.places.urls"), name="places"), + path('demo/template/', DemoTemplateView.as_view()), ] \ No newline at end of file diff --git a/public/views.py b/public/views.py index 046c810..48da627 100644 --- a/public/views.py +++ b/public/views.py @@ -4,4 +4,7 @@ class HomeView(TemplateView): template_name = "frontend/index.html" class Error404View(TemplateView): - template_name = "frontend/404.html" \ No newline at end of file + template_name = "frontend/404.html" + +class DemoTemplateView(TemplateView): + template_name = "mail/verify.html" \ No newline at end of file