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

Teams

{% if q and field%}

Searching for teams with {{field}} matching {{q}}

{% endif %}
{% for team in teams %} {% endfor %}
ID Team Email Website Affiliation Country Admin Verified Settings
{{ team.id }} {{ team.name | truncate(32) }} {% if team.website and (team.website.startswith('http://') or team.website.startswith('https://')) %}{{ team.website | truncate(32) }}{% endif %} {% if team.affiliation %}{{ team.affiliation | truncate(20) }}{% endif %} {% if team.country %}{{ team.country }}{% endif %}
{% if can_send_mail() %}{% 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 %}