{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}{% spaceless %}{% trans %}Users{% endtrans %}{% endspaceless %}{% endblock %} {% block forejs %} {% endblock %} {% block content %}
{% trans %}Users{% endtrans %}
{% trans %}reputation{% endtrans %} {% trans %}recent{% endtrans %} {% trans %}oldest{% endtrans %} {% trans %}by username{% endtrans %}

{% if suser %} {% trans %}users matching query {{suser}}:{% endtrans %} {% endif %} {% if not users.object_list %} {% trans %}Nothing found.{% endtrans %} {% endif %}

{% for user in users.object_list %}
  • {{ macros.gravatar(user, 32) }}
  • {{user.username}}
  • {{ macros.user_score_and_badge_summary(user) }}
{% if loop.index is divisibleby 7 %}
{% endif %} {% endfor %}
{% endblock %} {% block tail %}
{{ macros.paginator(paginator_context) }}
{% endblock %}