{% extends "layout.html" %} {% block body %}

{{title}}

{% if g.user and g.user.role_admin() and new_user %}
{% endif %}
{% if g.user and g.user.role_passwd() or g.user.role_admin()%}
{% endif %}
{% if g.user and g.user.role_admin() and not profile %}
{% endif %} {% if g.user and g.user.role_admin() and not profile and not new_user %}
{% endif %} {% if not profile %} {{_('Back')}} {% endif %}
{% if downloads %}

{{_('Recent Downloads')}}

{% for entry in downloads %}
...
{% endfor %} {% endif %}
{% endblock %}