introduces modules

This commit is contained in:
2016-04-23 23:08:39 +02:00
parent 3ec2e4648d
commit 0d8ae0cd18
38 changed files with 251 additions and 251 deletions

View File

@@ -0,0 +1,12 @@
{% extends "layout.html" %}
{% block body %}
<h1>Admin</h1>
We have {{ data.users|length }} users so far:
<ul>
{% for user in data.users %}
<li>{{user.email}}</li>
{% endfor %}
</ul>
<a href='{{ url_for('security.login', _external=True) }}'>Login</a>
{% endblock %}