forked from mirrors/bookwyrm
12 lines
600 B
HTML
12 lines
600 B
HTML
{% load fr_display %}
|
|
<span class="hidden-text">Rating</span>
|
|
<div class="field is-grouped stars form-rate-stars">
|
|
<input class="hidden" type="radio" name="rating" value="" checked>
|
|
{% for i in '12345'|make_list %}
|
|
<input class="hidden" id="book{{book.id}}-star-{{ forloop.counter }}" type="radio" name="rating" value="{{ forloop.counter }}">
|
|
<label class="icon icon-star-empty" for="book{{book.id}}-star-{{ forloop.counter }}">
|
|
<span class="hidden-text">{{ forloop.counter }} star{{ forloop.counter | pluralize }}</span>
|
|
</label>
|
|
{% endfor %}
|
|
</div>
|
|
|