{% extends "default.html" %} {% block title %}Statistics{% endblock %} {% block content %}

Web Service Statistics

{% for key, value in results_stats %} {% endfor %}
{{ key }} {{ value }}

Popularity By Page View

    {% for name, cnt in results_viewed %}
  1. {{ name.replace('.desktop', '') }} ({{ cnt }})
  2. {% endfor %}

Popularity By Submitted Reviews

    {% for name, cnt in results_submitted %}
  1. {{ name.replace('.desktop', '') }} ({{ cnt }})
  2. {% endfor %}
{% endblock %}