{% extends 'base.html' %} {% load i18n static core_tags %} {% block content %}

{% trans "Rate Your Experience" %}

{% trans "How was the service provided by" %} {{ parcel.carrier.username }}?

{% csrf_token %}
{% for radio in form.rating %} {{ radio.tag }} {% endfor %}
{% if form.rating.errors %}
{{ form.rating.errors }}
{% endif %}
{{ form.comment }} {% if form.comment.errors %}
{{ form.comment.errors }}
{% endif %}
{% trans "Cancel" %}
{% endblock %}