Moving some urls around
1 parent 8acd66a commit 8a450745c73948487eae3540f0fcbb71c2dc0adc
@Terri Oda Terri Oda authored on 20 Mar 2013
Showing 1 changed file
View
8
src/postorius/urls.py
# /account/
url(r'^accounts/login/$', 'user_login', name='user_login'),
url(r'^accounts/logout/$', 'user_logout', name='user_logout'),
url(r'^accounts/profile/$', 'user_profile', name='user_profile'),
url(r'^accounts/tasks/$', 'user_tasks', name='user_tasks'),
url(r'^tasks/$', 'user_tasks', name='user_tasks'),
url(r'^accounts/subscriptions/$', UserSubscriptionsView.as_view(),
name='user_subscriptions'),
url(r'^accounts/mailmansettings/$',
'user_mailmansettings',
name='user_mailmansettings'),
# /settings/
url(r'^settings/$', 'site_settings', name="site_settings"),
url(r'^settings/domains/$', 'domain_index', name='domain_index'),
url(r'^settings/domains/new/$', 'domain_new', name='domain_new'),
url(r'^settings/domains/(?P<domain>[^/]+)/delete$',
url(r'^domains/$', 'domain_index', name='domain_index'),
url(r'^domains/new/$', 'domain_new', name='domain_new'),
url(r'^domains/(?P<domain>[^/]+)/delete$',
'domain_delete', name='domain_delete'),
# /lists/
url(r'^lists/$', 'list_index', name='list_index'),
url(r'^lists/new/$', 'list_new', name='list_new'),