Use partials everywhere

This commit is contained in:
2026-09-06 14:46:29 +02:00
parent ec5b964ac3
commit d0bbdcdfcf
9 changed files with 127 additions and 143 deletions
-6
View File
@@ -26,7 +26,6 @@ from django.urls import path
from pedagogy.views import (
UECommentCreateView,
UECommentDeleteView,
UECommentDetailView,
UECommentReportCreateView,
UECommentUpdateView,
UECreateView,
@@ -46,11 +45,6 @@ urlpatterns = [
UECommentCreateView.as_view(),
name="comment_create",
),
path(
"comment/<int:comment_id>/",
UECommentDetailView.as_view(),
name="comment_detail",
),
path(
"comment/<int:comment_id>/edit/",
UECommentUpdateView.as_view(),