{% if theme_reviews %}
{% if not user_history %}{% endif %} {% if user_history %}{% endif %} {% for theme_review in theme_reviews.object_list %} {% set details = theme_review.details %} {% if not user_history %} {% else %} {% endif %} {% endfor %}
{{ _('Review Date') }}{{ _('Reviewer') }}{{ _('Theme') }}{{ _('Action') }} {{ _('Reason') }} {{ _('Comment') }}
{{ theme_review.created|datetime('%Y-%m-%d') }}{{ theme_review.user.display_name }} {% if theme_review.arguments %} {% if theme_review.arguments[0].slug and hasOneToOne(theme_review.arguments[0], 'persona') %} {# Link to the theme detail page if everything is there #} {{ theme_review.arguments[0].name }} {% elif theme_review.arguments[0] %} {# Only show the theme's name if the slug exists, but Persona no longer exists. #} {{ theme_review.arguments[0].name }} {% endif %} {% else %} {# Note if the addon has been deleted #} {{ _('Deleted') }} {% endif %} {{ action_dict[details.action] }} {% if details.reject_reason not in ('', None) %} {{ reject_reasons[details.reject_reason] }} {% endif %} {{ details.comment }}
{% if theme_reviews.has_other_pages() %} {% endif %}
{% else %}

{{ _('There are currently no reviews.') }}

{% endif %}