{% extends "default.html" %} {% block title %}All Reviews{% endblock %} {% block content %} {% if reviews|length == 0 %}
There are no results for this query.
{% else %}| # | 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 }} | {% if r.reported > 0 %}{{ r.karma_down }} | {% else %}{{ r.karma_down }} | {% endif %}{{ r.distro.replace(' GNU/Linux', '') }} | {{ r.locale }} | {% if r.user_display %}{{ format_truncate(r.user_display, 15) }} | {% else %}Unknown | {% endif %}{{ format_truncate(r.summary, 15) }} |