{% extends 'store/base.html' %} {% block title %}Staff Page{% endblock %} {% block content %}
| username | {{ user.username }} |
|---|---|
| Staff role | {% if user.profile.role == 'AD' %} Admin {% elif user.profile.role == 'EX' %} Executive {% else %} Operative {% endif %} |
| First name | {{ user.profile.first_name }} |
| Last name | {{ user.profile.last_name }} |
| {{ user.email }} | |
| Phone | {{ user.profile.telephone }} |