{% extends 'base.html' %} {% block content %}
{% for user in users %} {% endfor %}
# Name Active Actions
{{ loop.index + page.skip }}
{{ user.username }}
{% if user.activated %}
Active
{% else %}
Offline
{% endif %}
{% if page.pages > 1 %}
{% endif %} {% include 'user/add.html' %} {% endblock %} {% block scripts %} {% endblock %}