{% extends "default.html" %} {% block title %}All Reviews{% endblock %} {% block content %} {% if reviews|length == 0 %}

There are no results for this query.

{% else %} {% for r in reviews %} {% if r.reported > 0 %} {% else %} {% endif %} {% if r.user_display %} {% else %} {% endif %} {% endfor %}
# Created / Deleted Application Version Rating K↑ K↓ Distro Locale Name Summary
{{ r.review_id }} {{ format_timestamp(r.date_created) }} {% if r.date_deleted %}
{{ format_timestamp(r.date_deleted) }} {% endif %}
{{ r.app_id.replace('.desktop', '').replace('.Application', '') }} {{ r.version }} {{ format_rating(r.rating) }} {{ r.karma_up }}{{ r.karma_down }}{{ r.karma_down }}{{ r.distro.replace(' GNU/Linux', '') }} {{ r.locale }}{{ format_truncate(r.user_display, 15) }}Unknown{{ format_truncate(r.summary, 15) }}
{% macro render_pagination(pagination) %} {% endmacro %} {% if pagination %} {{render_pagination(pagination)}} {% endif %} {% endif %} {% endblock %}