{% extends "base.html" %} {% load i18n %} {% block content %}
| {% trans "ID" %} | {{ usr.id }} |
|---|---|
| {% trans "Name" %} | {{ usr.username }} |
| {% trans "Admin" %} | {% if user.is_superuser %}YES{% else %}NO{% endif %} |
| {% trans "Staff" %} | {% if user.is_staff %}YES{% else %}NO{% endif %} |
| {% trans "Active" %} | {% if user.is_active %}YES{% else %}NO{% endif %} |
| {% trans "Tasks" %} | {{ tasks }} |