mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
29 lines
656 B
Python
29 lines
656 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
app_name = 'export'
|
|
|
|
urlpatterns = [
|
|
path('export',
|
|
views.ExportListView.as_view(),
|
|
name='index'),
|
|
|
|
path('export/people',
|
|
views.people.PersonExportView.as_view(),
|
|
name='person'),
|
|
|
|
path('export/relationships',
|
|
views.people.RelationshipExportView.as_view(),
|
|
name='relationship'),
|
|
|
|
path('export/activities',
|
|
views.activities.ActivityExportView.as_view(),
|
|
name='activity'),
|
|
|
|
path('export/activity-attendance',
|
|
views.activities.ActivityAttendanceExportView.as_view(),
|
|
name='activity-attendance'),
|
|
]
|