aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/list.html
blob: b54201bb4ad4df2216c3b9ccffff286b8a5fc580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "base.html" %}

{% block title %}
	Admin Tools
{% endblock %}

{% block content %}
	<ul>
		<li><a href="{{ url_for('user_list_page') }}">User list</a></li>
		<li><a href="{{ url_for('switch_user_page') }}">Sign in as another user</a></li>
	</ul>

	<div class="box box_grey">
		<h2>Do action</h2>

		<form method="post" action="">
			<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
			<select name="action">
				<option value="importusers" selected>Create users from mod list</option>
				<option value="importscreenshots">Import screenshots from VCS</option>
			</select>
			<input type="submit" value="Start" />
		</form>
	</div>
{% endblock %}