Skip to content

Urls

hypha.apply.review.urls

app_name module-attribute

app_name = 'reviews'

urlpatterns module-attribute

urlpatterns = [path('reviews/', as_view(), name='list'), path('reviews/<int:pk>/', as_view(), name='review'), path('reviews/<int:pk>/delete/', as_view(), name='delete'), path('reviews/<int:pk>/edit/', as_view(), name='edit'), path('review/', as_view(), name='form'), path('review/opinion/<int:pk>/delete/', as_view(), name='delete_opinion')]