{% extends "layout.html" %} {% block head%} {{super()}} {% endblock %} {% block content %}
# | {{ _('Nickname') }} | {{ _('Email') }} | {{ _('Last seen') }} | {{ _('Actions') }} | |
---|---|---|---|---|---|
{{ loop.index }} | {% if user.id == current_user.id %}{{ user.nickname }} (It's you!) | {% else %}{{ user.nickname }} | {% endif %}{{ user.email }} | {{ user.last_seen }} | {% if user.id != current_user.id %} {% if user.activation_key == "" %} {% else %} {% endif %} {% endif %} |