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