mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
BREAKING CHANGE: Change format of Relationship CSV export BREAKING CHANGE: Use 'id' for id field in CSV exports Add RelationshipAnswerSet CSV export
33 lines
812 B
Python
33 lines
812 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/relationship-answer-sets',
|
|
views.people.RelationshipAnswerSetExportView.as_view(),
|
|
name='relationship-answer-set'),
|
|
|
|
path('export/activities',
|
|
views.activities.ActivityExportView.as_view(),
|
|
name='activity'),
|
|
|
|
path('export/activity-attendance',
|
|
views.activities.ActivityAttendanceExportView.as_view(),
|
|
name='activity-attendance'),
|
|
]
|