{% load i18n %}
{% blocktrans count score_info.num_votes as votes %}{{ votes }} vote{% plural %}{{ votes }} votes{% endblocktrans %}
  1. {{ score_info.current_score|floatformat }}/{{ score_info.num_stars }} {% trans "stars" %}
  2. {% if not readonly %} {% for star in score_info.stars %}
  3. {% if can_vote %}{{ star }}{% else %}{% trans "Sign in to rate" %}{% endif %}
  4. {% endfor %} {% endif %}