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

Users

{% if q and field %}
Searching for users with {{ field }} matching {{ q }}
Page {{ users.page }} of {{ users.total }} results
{% endif %} {% with form = Forms.users.PublicUserSearchForm(field=field, q=q) %}
{{ form.field(class="form-control custom-select w-100") }}
{{ form.q(class="form-control w-100", placeholder="Search for matching users") }}
{% endwith %}

{% for user in users.items %} {% 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 users.pages > 1 %}
Page
{% if users.page != 1 %} <<< {% endif %} {% if users.next_num %} >>> {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}