Skip to content
Snippets Groups Projects
Verified Commit 826b38c0 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Tidy html.

parent 60fdf389
No related branches found
No related tags found
No related merge requests found
{% load static %}
<div class="django-starfield" id="django-starfield-{{ widget.name }}">
{% for i in stars %}<!--
--><input type="radio" name="{{ widget.name }}" id="{{ widget.name }}-{{ forloop.counter0 }}"
value="{{ i }}" {% if widget.value == i %}checked="checked"{% endif %} /><!--
--><label for="{{ widget.name }}-{{ forloop.counter0 }}"><span>{{ i }}</span></label><!--
-->{% endfor %}
{% for i in stars %}
<input type="radio" name="{{ widget.name }}" id="{{ widget.name }}-{{ forloop.counter0 }}"
value="{{ i }}" {% if widget.value == i %}checked="checked"{% endif %} />
<label for="{{ widget.name }}-{{ forloop.counter0 }}"><span>{{ i }}</span></label>
{% endfor %}
</div>
<link rel="stylesheet" href="{% static 'django_starfield.css' %}" />
{% if codepoint %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment