Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
21cad864
Commit
21cad864
authored
Oct 25, 2015
by
José Padilla
Committed by
José Padilla
Oct 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use format_html in tags that generate HTML
parent
af5474f9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
rest_framework/templatetags/rest_framework.py
+5
-3
No files found.
rest_framework/templatetags/rest_framework.py
View file @
21cad864
...
@@ -7,7 +7,7 @@ from django.core.urlresolvers import NoReverseMatch, reverse
...
@@ -7,7 +7,7 @@ from django.core.urlresolvers import NoReverseMatch, reverse
from
django.template
import
Context
,
loader
from
django.template
import
Context
,
loader
from
django.utils
import
six
from
django.utils
import
six
from
django.utils.encoding
import
force_text
,
iri_to_uri
from
django.utils.encoding
import
force_text
,
iri_to_uri
from
django.utils.html
import
escape
,
smart_urlquote
from
django.utils.html
import
escape
,
format_html
,
smart_urlquote
from
django.utils.safestring
import
SafeData
,
mark_safe
from
django.utils.safestring
import
SafeData
,
mark_safe
from
rest_framework.renderers
import
HTMLFormRenderer
from
rest_framework.renderers
import
HTMLFormRenderer
...
@@ -48,7 +48,8 @@ def optional_login(request):
...
@@ -48,7 +48,8 @@ def optional_login(request):
return
''
return
''
snippet
=
"<li><a href='{href}?next={next}'>Log in</a></li>"
snippet
=
"<li><a href='{href}?next={next}'>Log in</a></li>"
snippet
=
snippet
.
format
(
href
=
login_url
,
next
=
escape
(
request
.
path
))
snippet
=
format_html
(
snippet
,
href
=
login_url
,
next
=
escape
(
request
.
path
))
return
mark_safe
(
snippet
)
return
mark_safe
(
snippet
)
...
@@ -71,7 +72,8 @@ def optional_logout(request, user):
...
@@ -71,7 +72,8 @@ def optional_logout(request, user):
<li><a href='{href}?next={next}'>Log out</a></li>
<li><a href='{href}?next={next}'>Log out</a></li>
</ul>
</ul>
</li>"""
</li>"""
snippet
=
snippet
.
format
(
user
=
escape
(
user
),
href
=
logout_url
,
next
=
escape
(
request
.
path
))
snippet
=
format_html
(
snippet
,
user
=
escape
(
user
),
href
=
logout_url
,
next
=
escape
(
request
.
path
))
return
mark_safe
(
snippet
)
return
mark_safe
(
snippet
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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