mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-05 16:39:42 +00:00
8 lines
364 B
HTML
8 lines
364 B
HTML
<div class="stars">
|
|
<span class="hidden-text">{{ rating|floatformat }} star{{ rating|floatformat | pluralize }}</span>
|
|
{% for i in '12345'|make_list %}
|
|
<span class="icon icon-star-{% if rating >= forloop.counter %}full{% elif rating|floatformat:0 >= forloop.counter|floatformat:0 %}half{% else %}empty{% endif %}">
|
|
</span>
|
|
{% endfor %}
|
|
</div>
|
|
|