feat: pagination for videos and icon separating

This commit is contained in:
mohamad
2026-08-01 17:45:55 +03:30
parent 7cddc03a57
commit 04b6e9049e
15 changed files with 508 additions and 25 deletions
+5
View File
@@ -9,5 +9,10 @@ urlpatterns = [
path("about/", views.AboutView.as_view(), name="about"),
path("faq/", views.FAQView.as_view(), name="faq"),
path("contact/", views.ContactView.as_view(), name="contact"),
path(
"videos/<slug:library>/",
views.PageVideoArchiveView.as_view(),
name="video_archive",
),
path("<slug>/", views.CustomPageView.as_view(), name="custom_page"),
]