Files
website-v2/testimonials/urls.py
2026-02-10 15:19:42 -05:00

13 lines
311 B
Python

from django.urls import path
from .views import TestimonialsIndexView, TestimonialDetailView
urlpatterns = [
path("", TestimonialsIndexView.as_view(), name="testimonials-index"),
path(
"<slug:author_slug>/",
TestimonialDetailView.as_view(),
name="testimonial-detail",
),
]