Skip to content
Snippets Groups Projects
Commit a09a0d72 authored by Martin Burchell's avatar Martin Burchell
Browse files

Remove unused ListContactsExport

parent b57d1cfb
No related branches found
No related tags found
2 merge requests!166Staging,!157Django 2.2 and Python 3 upgrade
from django.conf.urls import url
from .views import (
AddContact, DeleteContact, ListContacts, ListContactsExport,
AddContact, DeleteContact, ListContacts,
SendActivationEmailView, UpdateContact, UpdatePersonalInfo
)
......@@ -14,9 +14,5 @@ urlpatterns = [
url(r'activate/(?P<pk>\d+)/$', SendActivationEmailView.as_view(permanent=True),
name='contact_claim_account'),
url(r'personal/$', UpdatePersonalInfo.as_view(), name='personal_edit'),
url(r'export_as_csv/$', ListContactsExport.as_view(), {'format': 'csv'},
name='contact_list_csv'),
url(r'export_as_excel/$', ListContactsExport.as_view(), {'format': 'excel'},
name='contact_list_excel'),
url(r'$', ListContacts.as_view(), name='contact_list'),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment