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

Teams

{% for team in teams %} {% endfor %}
Team Website Affiliation Country
{% if scores_visible() %} {{ team.name | truncate(50) }} {% else %} {{ team.name | truncate(50) }} {% endif %} {% if team.oauth_id %} Official {% endif %} {% if team.website and (team.website.startswith('http://') or team.website.startswith('https://')) %} {% endif %} {% if team.affiliation %} {% if team.affiliation | length > 50 %} {% if team.affiliation %}{{ team.affiliation | truncate(50) }}{% endif %} {% else %} {% if team.affiliation %}{{ team.affiliation | truncate(50) }}{% endif %} {% endif %} {% endif %} {% if team.country %} {{ lookup_country_code(team.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 %}