From d59f31ca65d35ce4689beda51975a15448af06b1 Mon Sep 17 00:00:00 2001 From: Dominik George <nik@naturalnet.de> Date: Thu, 2 Aug 2018 12:42:24 +0200 Subject: [PATCH] Fix codepoint usage. --- django_starfield/templates/django_starfield/stars.html | 3 ++- django_starfield/widgets.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/django_starfield/templates/django_starfield/stars.html b/django_starfield/templates/django_starfield/stars.html index 2e8569c..909ef27 100644 --- a/django_starfield/templates/django_starfield/stars.html +++ b/django_starfield/templates/django_starfield/stars.html @@ -1,5 +1,6 @@ {% for i in stars %}<!-- --><input type="radio" name="{{ name }}" id="{{ name }}-{{ forloop.counter0 }}" value="{{ i }}" {% if value == i %}checked="checked"{% endif %} /><!-- - --><label for="{{ name }}-{{ forloop.counter0 }}">{{ i }}</label><!-- + --><label for="{{ name }}-{{ forloop.counter0 }}" + style="content: '\{{ codepoint }}'">{{ i }}</label><!-- -->{% endfor %} diff --git a/django_starfield/widgets.py b/django_starfield/widgets.py index 650370e..ba26e58 100644 --- a/django_starfield/widgets.py +++ b/django_starfield/widgets.py @@ -6,7 +6,7 @@ class Stars(Widget): def __init__(self, attrs=None, stars=5, codepoint='2605'): super(Stars, self).__init__(attrs) self.stars = 5 - self.codepoint = '2605' + self.codepoint = codepoint def get_context(self, name, value, attrs): context = super(Stars, self).get_context(name, value, attrs) -- GitLab