{% extends 'base.html' %} {% from 'macros.html' import entity_rate_form, show_avg_rating, display_pagination, show_review_buttons with context %} {% from 'common.html' import rating_script with context %} {% block title %}{{ work.name }} - CritiqueBrainz{% endblock %} {% block content %}
{{ _('No reviews found') }}
{% else %}| {{ _('Published on') }} | {{ _('Votes (+/-)') }} | |
|---|---|---|
| {{ _('by %(reviewer)s', reviewer=review.user.display_name) }} | {{ review.published_on | date }} | {{ review.votes_positive_count }}/{{ review.votes_negative_count }} |
| {{ _('Published on') }} | {{ _('Votes (+/-)') }} | |
|---|---|---|
| {{ _('by %(reviewer)s', reviewer=review.user.display_name) }} | {{ review.published_on | date }} | {{ review.votes_positive_count }}/{{ review.votes_negative_count }} |
{{ _('No recordings found') }}
{% else %}| {{ _('Type') }} | {{ _('Length') }} | |
|---|---|---|
| {{ recording.name }} | {{ rel.type | capitalize }} | {% if recording.length is defined %} {{ recording.length | track_length }} {% else %} - {% endif %} |