Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Debian New Member Process
nm.debian.org
Commits
33de91fc
Commit
33de91fc
authored
Aug 29, 2015
by
Enrico Zini
Browse files
More RemovedInDjango19Warning fixes
parent
2cb34bc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/urls.py
View file @
33de91fc
...
...
@@ -25,7 +25,7 @@ from django.views.generic import RedirectView
from
.
import
views
urlpatterns
=
patterns
(
'public.views'
,
url
(
r
'^$'
,
RedirectView
.
as_view
(
url
=
"/"
),
name
=
"public_index"
),
url
(
r
'^$'
,
RedirectView
.
as_view
(
url
=
"/"
,
permanent
=
True
),
name
=
"public_index"
),
url
(
r
'^newnm$'
,
views
.
Newnm
.
as_view
(),
name
=
"public_newnm"
),
url
(
r
'^newnm/resend_challenge/(?P<key>[^/]+)$'
,
'newnm_resend_challenge'
,
name
=
"public_newnm_resend_challenge"
),
url
(
r
'^newnm/confirm/(?P<nonce>[^/]+)$'
,
'newnm_confirm'
,
name
=
"public_newnm_confirm"
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment