{% extends "base.html" %} {% block title %}All users{% endblock %} {% block content_header %}All users{% endblock %} {% block content %}

{% if has_previous %}< Previous {{ results_per_page }}{% endif %}  {% if has_next %}Next {{ results_per_page }} >{% endif %}

{% endblock %} {% block sidebar %}

There are currently {{ hits }} users posting snippets.

The users who've submitted the most snippets are:

{% load popular %} {% get_top_authors 5 as top_authors %}
    {% for author in top_authors %}
  1. {{ author.username }}
  2. {% endfor %}
{% endblock %}