reply.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <div class="panel panel-default">
  2. <div class="panel-heading clearfix">
  3. <span style="float:right">
  4. 排序:
  5. <div class="btn-group btn-group-xs" role="group">
  6. <a href="" class="btn btn-default active">时间</a>
  7. <a href="" class="btn btn-default">投票</a>
  8. </div>
  9. </span>
  10. </div>
  11. {% if replies.items %}
  12. {% if setting.reply_list == 1 or (setting.reply_list == 2 and g.user.is_authenticated) or (g.user.is_authenticated and g.user.username == g.user_url) %}
  13. {% for reply in replies.items %}
  14. <div class="panel-body" style="border-bottom:1px solid #eee">
  15. <span style="font-size:12px;color:#999;">回复了 {{ reply.username }} 创建的主题:
  16. <a href="{{ url_for('topic.topic',uid=reply.topic.uid)}}">{{ reply.topic.title}}</a>
  17. </span>
  18. <p>{{ reply.content }}</p>
  19. <span style="font-size:12px;color:#999;">
  20. 回复日期:{{ reply.publish | timesince }}
  21. </span>
  22. </div>
  23. {% endfor %}
  24. {{ p_footer(replies,'user.reply')}}
  25. {% else %}
  26. <div class="panel-body" style="border:1px dashed #337ab7;margin:5px;">
  27. <span class="text-center" style="display:block;width:100%;color:#999">
  28. <span class="glyphicon glyphicon-lock" aria-hidden="true" style="font-size:16px;"></span>
  29. 根据用户设置,列表被隐藏
  30. </span>
  31. </div>
  32. {% endif %}
  33. {% else %}
  34. <div class="panel-body text-center">
  35. 没有回复
  36. </div>
  37. {% endif %}
  38. </div>