{% extends "base.html" %} {% block title %} 投票记录列表 {% endblock %} {% block content %}

投票记录列表


{{FilterHTML|safe}} {% for i in lPage %} {% endfor %}
作品ID 作品标题 投票者账号 投票者姓名 参赛者账号 参赛者姓名 投票理由 投票时间
{{ i.target.uuid }} {{ i.target.title }} {{ i.voter.username }} {{ i.voter.nickname }} {{ i.target.author.user.username }} {{ i.target.author.user.nickname }} {{ i.comment |slice:"20" }}... {{ i.time | date:"Y-m-d H:i:s" }}
{% include "common/paginator.html" %} {% endblock %}