Remove OG views

Moved to hosting project
This commit is contained in:
Stefan Wehrmeyer 2023-02-03 15:12:20 +01:00
parent 2505abd66f
commit dfd39bf920
6 changed files with 0 additions and 115 deletions

View file

@ -2,10 +2,8 @@ from django.urls import path
from django.utils.translation import pgettext_lazy
from .views import (
GovPlanDetailOGView,
GovPlanDetailView,
GovPlanProposeUpdateView,
GovPlanSectionDetailOGView,
GovPlanSectionDetailView,
search,
)
@ -19,11 +17,6 @@ urlpatterns = [
GovPlanDetailView.as_view(),
name="plan",
),
path(
pgettext_lazy("url part", "<slug:gov>/plan/<slug:plan>/_og/"),
GovPlanDetailOGView.as_view(),
name="plan_og",
),
path(
pgettext_lazy("url part", "<slug:gov>/plan/<slug:plan>/propose-update/"),
GovPlanProposeUpdateView.as_view(),
@ -34,9 +27,4 @@ urlpatterns = [
GovPlanSectionDetailView.as_view(),
name="section",
),
path(
pgettext_lazy("url part", "<slug:gov>/<slug:section>/_og/"),
GovPlanSectionDetailOGView.as_view(),
name="section_og",
),
]