Prototype: use partials

This commit is contained in:
2026-09-04 18:32:00 +02:00
parent 2832e76a31
commit ec5b964ac3
10 changed files with 96 additions and 205 deletions
-6
View File
@@ -31,7 +31,6 @@ from pedagogy.views import (
UECommentUpdateView,
UECreateView,
UEDeleteView,
UEDetailCommentsView,
UEDetailView,
UEGuideView,
UEModerationFormView,
@@ -42,11 +41,6 @@ urlpatterns = [
# Urls displaying the actual application for visitors
path("", UEGuideView.as_view(), name="guide"),
path("ue/<int:ue_id>/", UEDetailView.as_view(), name="ue_detail"),
path(
"ue/<int:ue_id>/comments",
UEDetailCommentsView.as_view(),
name="ue_comments",
),
path(
"ue/<int:ue_id>/comment",
UECommentCreateView.as_view(),