{% extends "admin/base.html" %} {% block page_title %}联系我们{% endblock %} {% block content %}
联系我们({{items|length}})
{% for f in items %}
{{f.title}} {% if f.status=='replied'%}已回复{% else %}待回复{% endif %}
{{f.staff.name if f.staff}} · {{f.staff.phone if f.staff}} · {{f.created_at.strftime('%Y-%m-%d %H:%M') if f.created_at}}
{{f.content}}
{% if f.screenshot_url %}
{% endif %} {% if f.reply %}
客服回复:{{f.reply}}
{{f.replied_at.strftime('%Y-%m-%d %H:%M') if f.replied_at}}
{% endif %}
{% if current_user.role == 'super' %}
{% endif %}
{% else %}
暂无联系我们
{% endfor %}
{% endblock %}