Files
CTFd/templates/admin/teams.html
2015-01-01 00:45:25 -05:00

25 lines
576 B
HTML

{% extends "admin/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">
<p></p>
<table id="teamsboard">
<thead>
<tr>
<td><b>Team</b>
</td>
</tr>
</thead>
<tbody>
{% for team in teams %}
<tr><td><a href="/admin/team/{{ team.id }}">{{ team.name }}</a></td></tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}
{% block scripts %}
{% endblock %}