{% extends 'admin/index.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% block title %}Manage Users{% endblock %} {% block content %}
Avatars | Name/username | Role | Bio | City | Date | Photos | Actions |
---|---|---|---|---|---|---|---|
{{ user.name }} {{ user.username }} |
{{ user.role.name }} | {{ user.bio }} | {{ user.location }} | {{ moment(user.member_since).format('LL') }} | {{ user.photos|length }} | {% if user.role.name not in ['Administrator', 'Moderator'] %} {% if user.locked %} {% else %} {% endif %} {% if user.active %} {% else %} {% endif %} {% endif %} Email {% if current_user.is_admin %} Edit profile {% endif %} |