Skip to content

Commit

Permalink
Remove ‘/‘ from inside variable block {{ }}
Browse files Browse the repository at this point in the history
manage.py compress —force causes a warning here.
  • Loading branch information
theengineear committed Dec 23, 2014
1 parent 399cb16 commit 3576834
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% for key, text in field.choices.items %}
<div class="checkbox">
<label>
<input type="checkbox" name="{{ rest_framework/field.name }}" value="{{ key }}" {% if key in field.value %}checked{% endif %}>
<input type="checkbox" name="{{ field.name }}" value="{{ key }}" {% if key in field.value %}checked{% endif %}>
{{ text }}
</label>
</div>
Expand Down

0 comments on commit 3576834

Please sign in to comment.