mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-24 04:32:08 +00:00
13 lines
311 B
Python
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",
|
|
),
|
|
]
|