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
f7ea4250
Commit
f7ea4250
authored
Oct 27, 2015
by
Tom Christie
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3546 from jpadilla/format-html
Use format_html in tags that generate HTML
parents
af5474f9
21cad864
Hide 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 @
f7ea4250
...
...
@@ -7,7 +7,7 @@ from django.core.urlresolvers import NoReverseMatch, reverse
from
django.template
import
Context
,
loader
from
django.utils
import
six
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
rest_framework.renderers
import
HTMLFormRenderer
...
...
@@ -48,7 +48,8 @@ def optional_login(request):
return
''
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
)
...
...
@@ -71,7 +72,8 @@ def optional_logout(request, user):
<li><a href='{href}?next={next}'>Log out</a></li>
</ul>
</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
)
...
...
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