From 826b38c0f279ab6edec41bb4dfe54bc9d317215d Mon Sep 17 00:00:00 2001
From: Dominik George <nik@naturalnet.de>
Date: Thu, 2 Aug 2018 14:22:02 +0200
Subject: [PATCH] Tidy html.

---
 django_starfield/templates/django_starfield/stars.html | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/django_starfield/templates/django_starfield/stars.html b/django_starfield/templates/django_starfield/stars.html
index f7ce347..7df4cd3 100644
--- a/django_starfield/templates/django_starfield/stars.html
+++ b/django_starfield/templates/django_starfield/stars.html
@@ -1,10 +1,10 @@
 {% 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 %}
-- 
GitLab