mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
26 lines
678 B
HTML
26 lines
678 B
HTML
{% 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 %}
|