{% extends "base.html" %} {% block title %}{{ target.username }} — Users — TaskFlow{% endblock %} {% block content %}
{% if errors %}
{% for e in errors %}{{ e }}{% if not loop.last %}
{% endif %}{% endfor %}
{% endif %} {% if success %}
{{ success }}
{% endif %}
Email
{{ target.email }}
Member since
{{ target.created_at.strftime('%d %b %Y') }}
{% if target.id == user.id %}
You cannot change your own role.
{% endif %}
{% if target.id == user.id %}
You cannot deactivate your own account.
{% endif %}
Cancel
{% endblock %}