Skip to content

Commit

Permalink
revert: Disable landing pages for VP study.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-AP committed May 21, 2024
1 parent fd2b105 commit f1b1097
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
File renamed without changes.
3 changes: 0 additions & 3 deletions ddl/urls.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
from django.urls import path
from ddl.views import VPStudyLandingPage, VPStudyLandingPageInvited


urlpatterns = [
path('vp-studie', VPStudyLandingPage.as_view(), name='vp-study'),
path('vp-studie-inv', VPStudyLandingPageInvited.as_view(), name='vp-study-invited')
]
4 changes: 2 additions & 2 deletions ddl/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class MainView(TemplateView):


class VPStudyLandingPage(TemplateView):
template_name = 'ddl/vp_study_landing.html'
template_name = 'ddl/vp-study/vp_study_landing.html'


class VPStudyLandingPageInvited(TemplateView):
template_name = 'ddl/vp_study_landing_invited.html'
template_name = 'ddl/vp-study/vp_study_landing_invited.html'

0 comments on commit f1b1097

Please sign in to comment.