{% extends 'postings/frontend/base_page.html' %} {# Load static tag so that images and custom scripts from /static/ can be used. #} {% load static %} {% block page_title %} RMC - {{ entity.name }} {% endblock %} {% block content %}
{% block entity_info %}

{{ entity.name }}

{% endblock %}

Average user rating

{{ entity.average_rating|floatformat:"-2" }} / 5

{# Rating Distribution Display #}

Rating breakdown

5
80% Complete (danger)
{{ entity.rating_distribution.4 }}
4
80% Complete (danger)
{{ entity.rating_distribution.3 }}
3
80% Complete (danger)
{{ entity.rating_distribution.2 }}
2
80% Complete (danger)
{{ entity.rating_distribution.1 }}
1
80% Complete (danger)
{{ entity.rating_distribution.0 }}

{# New Review input form. Hidden by default. #}
{% for review in reviews %} {% include "postings/frontend/review.html" with review=review only %} {% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}