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

29 lines
654 B
HTML

{% extends "admin/base.html" %}
{% block content %}
<div class="row">
<br>
<table id="pages">
<thead>
<tr>
<td><b>Route</b></td>
</tr>
</thead>
<tbody>
{% for route in routes %}
<tr>
<td><a href="/admin/pages/{{ route.route }}">{{ route.route }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
<form method="POST">
<input name='nonce' type='hidden' value="{{ nonce }}">
<button class="radius" type='submit'>New Page</button>
</form>
</div>
{% endblock %}
{% block scripts %}
{% endblock %}