2015-01-01 05:45:25 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.0/c3.min.css">
|
|
|
|
|
|
|
|
<div class="row">
|
2015-01-08 02:03:37 +00:00
|
|
|
<br>
|
2015-01-01 05:45:25 +00:00
|
|
|
<table id="teamsboard">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<td><b>Team</b></td>
|
|
|
|
<td><b>Website</b></td>
|
|
|
|
<td><b>Affiliation</b></td>
|
|
|
|
<td><b>Country</b></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for team in teams %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="/team/{{ team.id }}">{{ team.name }}</a></td>
|
2015-03-15 18:44:47 +00:00
|
|
|
<td>{% if team.website and team.website.startswith('http') %}<a href="{{ team.website }}">{{ team.website }}</a>{% endif %}</td>
|
2015-01-01 05:45:25 +00:00
|
|
|
<td><span>{% if team.affiliation %}{{ team.affiliation }}{% endif %}</span></td>
|
|
|
|
<td><span>{% if team.country %}{{ team.country }}{% endif %}</span></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|