{% 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 %}

{{ entity.name }} {{ entity.average }}


Average user rating

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


{# 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 %}