{% if perms.bee_django_user.change_userprofile %} 修改 {% endif %}
| 头像 |
{% if user.userprofile.avatar %}
|
| 姓名 | {{ user.first_name }} |
| 统一缦客号 | {{ user.userprofile.get_sn }} {% if perms.bee_django_user.can_change_user_sn %} 修改 {% endif %} |
| 用户名 | {{ user.username }} |
| 密码 | 重置密码 |
| 用户组 | {% for group in user.groups.all %}{{ group.name }}{% if not forloop.last %} / {% endif %}{% endfor %} {% if perms.bee_django_user.can_change_user_group %} 修改 {% endif %} |
| 班级 | {{ user.userprofile.user_class|default:'' }} |
| 助教 | {{ user.userprofile.user_class.assistant.first_name|default:'' }} |
| 客服 | {{ user.userprofile.agent.user.first_name|default:'' }} |
| 家长助教 | {% for parent in user.userprofile.parents.all %} {{ parent.user.first_name|default:'' }}{% if not forloop.last %},{% endif %} {% endfor %} {% if perms.bee_django_user.can_change_user_parent %} 修改 {% endif %} |
| 直播间id | {{ user.userprofile.room_id|default:'' }} |
| 开课日期 | {{ user.userprofile.start_date|default:"" }} |
| 结课日期 | {{ user.get_expire_date|default:"" }} 全部记录 {% if perms.bee_django_user.add_userleaverecord %} 修改 {% endif %} |