from django.urls import path from . import views app_name = "collabs" urlpatterns = [ path('export//', views.ExportView.as_view(), name='detail'), ]