{% extends "base.html" %} {% load display_tags %} {% load authorization_tags %} {% block content %} {{ block.super }}
| First Name | {{ user.first_name }} |
| Last Name | {{ user.last_name }} |
| Username | {{ user.username }} |
| {{ user.email }} |
| Title | {% if user.usercontactinfo.title %} {{ user.usercontactinfo.title }} {% endif %} |
| Phone Number | {{ user.usercontactinfo.phone_number }} |
| Cell Number | {{ user.usercontactinfo.cell_number }} |
| Twitter Username | {% if user.usercontactinfo.twitter_username %} {{ user.usercontactinfo.twitter_username }} {% endif %} |
| Github Username | {% if user.usercontactinfo.github_username %} {{ user.usercontactinfo.github_username }} {% endif %} |
| Slack Email Address | {% if user.usercontactinfo.slack_username %} {{ user.usercontactinfo.slack_username }} {%endif %} |
| Product Type | Role | |
|---|---|---|
| {{ member.product_type }} | {{ member.role }} |
| Product | Role | |
|---|---|---|
| {{ member.product }} | {{ member.role }} |
| Group | Group role | |
|---|---|---|
| {{ member.group }} | {{ member.role }} |
| Active | {% if user.is_active %} {% else %} {% endif %} |
| Staff | {% if user.is_staff %} {% else %} {% endif %} |
| Superuser | {% if user.is_superuser %} {% else %} {% endif %} |
| Block execution | {% if user.usercontactinfo.block_execution %} {% else %} {% endif %} |
| Global role | {% if user.global_role.role %} {{ user.global_role.role }} {% endif %} |