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

Teams

{% for team in teams %} {% endfor %}
Team Website Affiliation
{% if hide_scores() %} {{ team.name }} {% else %} {{ team.name }} {% endif %} {% if team.website and (team.website.startswith('http://') or team.website.startswith('https://')) %}{{ team.website }}{% endif %} {% if team.affiliation %}{{ team.affiliation }}{% endif %}
{% if team_pages > 1 %}
Page
{% if curr_page != 1 %}<<<{% endif %} {% for page in range(1, team_pages + 1) %} {% if curr_page != page %} {{ page }} {% else %} {{page}} {% endif %} {% endfor %} {% if curr_page != team_pages %}>>>{% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}