mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 23:49:33 +00:00
14 lines
321 B
HTML
14 lines
321 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Users - Admin{% endblock %}
|
|
|
|
{% block content %}
|
|
{% block menu %}
|
|
{% include "admin/_menu.html" %}
|
|
{% endblock %}
|
|
<form>
|
|
<p>
|
|
Please use the <a href="/djadmin/users/user/">Django Admin</a> for now.
|
|
</p>
|
|
</form>
|
|
{% endblock %}
|