{% extends "base.html" %} {% block stylesheets %} {% endblock %} {% block content %}

Users

{% for user in users %} {% endfor %}
User Website Affiliation Country
{% if scores_visible() %} {{ user.name | truncate(50) }} {% else %} {{ user.name | truncate(50) }} {% endif %} {% if user.oauth_id %} Official {% endif %} {% if user.website and (user.website.startswith('http://') or user.website.startswith('https://')) %} {% endif %} {% if user.affiliation %} {% if user.affiliation | length > 50 %} {% if user.affiliation %}{{ user.affiliation | truncate(50) }}{% endif %} {% else %} {% if user.affiliation %}{{ user.affiliation | truncate(50) }}{% endif %} {% endif %} {% endif %} {% if user.country %} {{ lookup_country_code(user.country) }} {% endif %}
{% if pages > 1 %}
Page
{% if curr_page != 1 %} <<< {% endif %} {% for page in range(1, pages + 1) %} {% if curr_page != page %} {{ page }} {% else %} {{ page }} {% endif %} {% endfor %} {% if curr_page != pages %} >>> {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}