{% extends 'base.html' %} {% block content %} {% block header %}{% endblock %}
{% for field in form.errors %} {% for error in form.errors[field] %}
{{ error }}
{% endfor %} {% endfor %}
{% include ('review/modify/%s.html' % entity_type) %}

{{ form.hidden_tag() }}
{{ form.rating(class="rating", id="rating") }}
{{ _('You can read the style guide for writing good CritiqueBrainz reviews!
Furthermore, you can use Markdown syntax to apply custom formatting.', style_guide_url='https://wiki.musicbrainz.org/How_to_write_Good_Critiquebrainz_Reviews', markdown_url='http://daringfireball.net/projects/markdown/syntax') }}


{{ form.text(id="review-content") }}
{{ form.language(id="review-language", class="form-control") }}

{% if review is not defined or review.is_draft %}
{% for choice in form.license_choice %}
{% endfor %}
{{ _('You cannot change the license after the review is published.') }} {% if not current_user.license_choice %}

{% endif %}
{% endif %} {% block license_agreement_input %}{% endblock %}
{% block buttons %}{% endblock %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}