{% extends "html/base.html" %} {% block title %}{{ gettext('Ratings for %(wn)s', wn=worksheet.name()) }}{% endblock %} {% block body %}

{{ gettext('Ratings for %(wn)s', wn=worksheet.name()) }}

{{ gettext('Go to the worksheet.') }} {% for rating in worksheet.ratings()|sort %} {% endfor %}
{{ gettext('User') }}{{ gettext('Rating') }}{{ gettext('Comment') }}
{{ rating[0] }}{# User #} {{ rating[1] }}{# Rating #} {{'' if rating|length < 3 else rating[2] }}{# Comment #}
{% endblock %}