Skip to content

Urls

hypha.apply.projects.urls

app_name module-attribute

app_name = 'projects'

urlpatterns module-attribute

urlpatterns = [path('', as_view(pattern_name='apply:projects:all'), name='overview'), path('all/', as_view(), name='all'), path('statuses/', get_project_status_counts, name='projects_status_counts'), path('invoices/', as_view(), name='invoices'), path('invoices/statuses/', get_invoices_status_counts, name='invoices_status_counts'), path('<int:pk>/', include([path('', as_view(), name='detail'), path('partial/activities/', partial_project_activities, name='partial-activities'), path('edit/', as_view(), name='edit'), path('documents/<int:file_pk>/', as_view(), name='document'), path('category/<str:type>/<int:category_pk>/template/', as_view(), name='category_template'), path('contract/<int:file_pk>/', as_view(), name='contract'), path('contract/documents/<int:file_pk>/', as_view(), name='contract_document'), path('download/<str:export_type>/', as_view(), name='download'), path('approval/', as_view(), name='approval'), path('sow/', as_view(), name='sow'), path('sow/download/<str:export_type>/', as_view(), name='download-sow'), path('invoice/', as_view(), name='invoice'), path('vendor/', as_view(), name='vendor'), path('vendor/<int:vendor_pk>/', as_view(), name='vendor-detail'), path('vendor/<int:vendor_pk>/documents/<int:file_pk>/', as_view(), name='vendor-documents'), path('invoices/<int:invoice_pk>/', include([path('', as_view(), name='invoice-detail'), path('edit/', as_view(), name='invoice-edit'), path('delete/', as_view(), name='invoice-delete'), path('documents/invoice/', as_view(), name='invoice-document'), path('documents/supporting/<int:file_pk>/', as_view(), name='invoice-supporting-document')]))])), path('reports/', include(([path('', as_view(), name='all'), path('<int:pk>/', include([path('', as_view(), name='detail'), path('skip/', as_view(), name='skip'), path('edit/', as_view(), name='edit'), path('documents/<int:file_pk>/', as_view(), name='document')]))], 'reports')))]