from django.urls import path from .views import ReviewListView urlpatterns = [ path('list//',ReviewListView.as_view(), name= 'review-list'), ]