{% from '_functions.html' import avatar_thumbnail, badge_thumbnail with context %} {% extends '_base.html' %} {% block body %}
{% if search_query %}

Search Results

{% if search_results|length > 0 %}

Your search for {{search_query}} returned the following results:

    {% for r in search_results %}
  • {{r}}
  • {% endfor %}
{% else %}

Your search for {{search_query}} returned no results.

{% endif %}
{% endif %}

Explore Badges

Visit the badge index to see every badge, as well as the newest badges.

Random Badges

{% for badge in random_badges %} {{ badge_thumbnail(badge, 64, 15) }} {% endfor %}

Badge Search

Explore People

Random People

{% for person in random_persons %} {{ avatar_thumbnail(person, 64, 15) }} {% endfor %}

Person Search

Explore Tags

View Tags

Reports

You can construct URLs to generate reports on almost any time frame. Take a look at the following examples:

{% endblock %}