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
075a0bde
Commit
075a0bde
authored
Aug 15, 2016
by
James Beith
Committed by
Tom Christie
Aug 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix template syntax error for `as_list_of_strings` (#4403)
parent
b508bc8d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
rest_framework/templates/rest_framework/vertical/checkbox_multiple.html
+2
-2
No files found.
rest_framework/templates/rest_framework/vertical/checkbox_multiple.html
View file @
075a0bde
...
...
@@ -9,7 +9,7 @@
<div>
{% for key, text in field.choices.items %}
<label
class=
"checkbox-inline"
>
<input
type=
"checkbox"
name=
"{{ field.name }}"
value=
"{{ key }}"
{%
if
key
|
as_string
in
field
.
value
|
as_list_of_strings
g
%}
checked
{%
endif
%}
>
<input
type=
"checkbox"
name=
"{{ field.name }}"
value=
"{{ key }}"
{%
if
key
|
as_string
in
field
.
value
|
as_list_of_strings
%}
checked
{%
endif
%}
>
{{ text }}
</label>
{% endfor %}
...
...
@@ -18,7 +18,7 @@
{% for key, text in field.choices.items %}
<div
class=
"checkbox"
>
<label>
<input
type=
"checkbox"
name=
"{{ field.name }}"
value=
"{{ key }}"
{%
if
key
|
as_string
in
field
.
value
|
as_list_of_strings
g
%}
checked
{%
endif
%}
>
<input
type=
"checkbox"
name=
"{{ field.name }}"
value=
"{{ key }}"
{%
if
key
|
as_string
in
field
.
value
|
as_list_of_strings
%}
checked
{%
endif
%}
>
{{ text }}
</label>
</div>
...
...
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