{% extends "html/base.html" %} {% block title %}Ratings for {{ worksheet.name() }}{% endblock %} {% block body %}

Ratings for {{ worksheet.name() }}

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