feat: Add export front page

This commit is contained in:
James Graham
2020-03-27 14:31:59 +00:00
parent af77cb39f8
commit 74aab162e1
3 changed files with 51 additions and 0 deletions

View File

@@ -28,6 +28,10 @@ urlpatterns = [
views.IndexView.as_view(),
name='index'),
path('export',
views.ExportListView.as_view(),
name='export'),
path('',
include('people.urls')),