bookwyrm-mastodon/bookwyrm/templates/snippets/stars.html

8 lines
436 B
HTML
Raw Normal View History

2021-01-31 13:34:25 -05:00
<p class="stars">
2020-11-10 00:15:55 -05:00
<span class="is-sr-only">{% if rating %}{{ rating|floatformat }} star{{ rating|floatformat | pluralize }}{% else %}No rating{% endif %}</span>
2020-04-03 15:43:49 -04:00
{% for i in '12345'|make_list %}
2021-02-23 17:00:19 -05:00
<span class="icon is-small mr-1 icon-star-{% if rating >= forloop.counter %}full{% elif rating|floatformat:0 >= forloop.counter|floatformat:0 %}half{% else %}empty{% endif %}" aria-hidden="true">
2020-04-03 15:43:49 -04:00
</span>
{% endfor %}
2021-01-31 13:34:25 -05:00
</p>