{% if theme_reviews %}
{{ _('Review Date') }} | {% if not user_history %}{{ _('Reviewer') }} | {% endif %} {% if user_history %}{{ _('Theme') }} | {% endif %}{{ _('Action') }} | {{ _('Reason') }} | {{ _('Comment') }} |
---|---|---|---|---|---|
{{ theme_review.created|datetime('%Y-%m-%d') }} | {% if not user_history %}{{ theme_review.user.display_name }} | {% else %}{% 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 %} | {% endif %}{{ action_dict[details.action] }} | {% if details.reject_reason not in ('', None) %} {{ reject_reasons[details.reject_reason] }} {% endif %} | {{ details.comment }} |