{% macro review_prompt(slug, isModal, existingReview) %} {# Used for both adding and editing reviews, in page form and modal form. #}
{% if isModal %}

{{ existingReview and _('Edit Review') or _('Leave a Review') }}

{% endif %}

{{ _('Please select a star rating.') }}

{{ _('Please read the Review Guidelines for more details about rating apps. Reviews that do not meet these guidelines may be removed by our moderation team without notice.') |format(url='https://developer.mozilla.org/Marketplace/User_Review_Guidelines') }}

{{ _('Only users that are logged in may submit reviews.') }}

{% endmacro %}
{{ review_prompt(slug) }}