mirror of
https://github.com/aljazceru/CTFd.git
synced 2026-02-03 13:24:32 +01:00
25 lines
576 B
HTML
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 %} |