|
@@ -77,7 +77,7 @@ urlpatterns = [
|
|
|
url(r'^edit/authors/create/redirect/$',
|
|
|
views.NaiveAuthorCreate.as_view(success_url='/edit/authors/create/')),
|
|
|
url(r'^edit/authors/create/interpolate_redirect/$',
|
|
|
- views.NaiveAuthorCreate.as_view(success_url='/edit/author/%(id)d/update/')),
|
|
|
+ views.NaiveAuthorCreate.as_view(success_url='/edit/author/{id}/update/')),
|
|
|
url(r'^edit/authors/create/interpolate_redirect_nonascii/$',
|
|
|
views.NaiveAuthorCreate.as_view(success_url='/%C3%A9dit/author/{id}/update/')),
|
|
|
url(r'^edit/authors/create/restricted/$',
|
|
@@ -92,7 +92,7 @@ urlpatterns = [
|
|
|
url(r'^edit/author/(?P<pk>[0-9]+)/update/redirect/$',
|
|
|
views.NaiveAuthorUpdate.as_view(success_url='/edit/authors/create/')),
|
|
|
url(r'^edit/author/(?P<pk>[0-9]+)/update/interpolate_redirect/$',
|
|
|
- views.NaiveAuthorUpdate.as_view(success_url='/edit/author/%(id)d/update/')),
|
|
|
+ views.NaiveAuthorUpdate.as_view(success_url='/edit/author/{id}/update/')),
|
|
|
url(r'^edit/author/(?P<pk>[0-9]+)/update/interpolate_redirect_nonascii/$',
|
|
|
views.NaiveAuthorUpdate.as_view(success_url='/%C3%A9dit/author/{id}/update/')),
|
|
|
url(r'^[eé]dit/author/(?P<pk>[0-9]+)/update/$',
|
|
@@ -106,7 +106,7 @@ urlpatterns = [
|
|
|
url(r'^edit/author/(?P<pk>[0-9]+)/delete/redirect/$',
|
|
|
views.NaiveAuthorDelete.as_view(success_url='/edit/authors/create/')),
|
|
|
url(r'^edit/author/(?P<pk>[0-9]+)/delete/interpolate_redirect/$',
|
|
|
- views.NaiveAuthorDelete.as_view(success_url='/edit/authors/create/?deleted=%(id)s')),
|
|
|
+ views.NaiveAuthorDelete.as_view(success_url='/edit/authors/create/?deleted={id}')),
|
|
|
url(r'^edit/author/(?P<pk>[0-9]+)/delete/interpolate_redirect_nonascii/$',
|
|
|
views.NaiveAuthorDelete.as_view(success_url='/%C3%A9dit/authors/create/?deleted={id}')),
|
|
|
url(r'^edit/author/(?P<pk>[0-9]+)/delete/$',
|