mirror of
https://github.com/aljazceru/CTFd.git
synced 2026-01-13 19:14:30 +01:00
29 lines
654 B
HTML
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 %}
|