moviewyrm/bookwyrm/templates/snippets/rate_form.html

13 lines
600 B
HTML
Raw Normal View History

2020-04-03 23:25:04 +00:00
{% load fr_display %}
<span class="hidden-text">Rating</span>
2020-09-29 18:00:54 +00:00
<div class="field is-grouped stars form-rate-stars">
<input class="hidden" type="radio" name="rating" value="" checked>
2020-04-03 23:25:04 +00:00
{% for i in '12345'|make_list %}
2020-09-29 18:00:54 +00:00
<input class="hidden" id="book{{book.id}}-star-{{ forloop.counter }}" type="radio" name="rating" value="{{ forloop.counter }}">
2020-04-03 23:25:04 +00:00
<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>