{% extends "bee_django_crm/base.html" %}
{% load bee_django_crm_filter %}
{% load static %}
{% block styles %}
{% endblock %}
{% block content %}
{% include 'bee_django_crm/logo.html' %}
{% include 'bee_django_crm/nav.html' %}
{% include 'bee_django_crm/messages.html' %}
微信详情
id |
{{ record.id }} |
昵称 |
{{ record.wxuser }} |
头像 |
{% if record.wxuser.avatar_url %}
{% endif %}
|
性别 |
{{ record.wxuser.get_gender }} |
地区 |
{{ record.wxuser.country|default:"" }} - {{ record.wxuser.province|default:"" }}
- {{ record.wxuser.city|default:"" }} |
参加活动详情
奖品名称 |
{{ record.reward }} |
参加时间 |
{{ record.created_at }} |
来源 |
{{ record.wxuser.user|default:"" }} |
当前结果 |
{{ record.result }} |
状态 |
{{ record.get_status }}
{% if perms.bee_django_crm.change_campaignrecord %}
{% if not record.status == 3 %}
消费
{% endif %}
{% endif %}
|
绑定用户 |
{% if record.is_mk and record.bind_user %}
{{ record.bind_user }}
{% endif %}
{% if not record.is_mk and record.bind_preuser %}
{{ record.bind_preuser.name }}
{% endif %} |
历史记录 |
{{ record.history|default:""|safe }} |
{% endblock %}
{% block scripts %}
{% endblock %}