_macro.html 729 B

123456789101112131415161718192021
  1. {% macro like(reply) -%}
  2. {% if reply.is_liked() %}
  3. <a href="javascript:void(0);" style="padding:0" class="like-reply btn btn-sm like-active" data-id="{{ reply.id}}" title="取消赞">
  4. <i class="fa fa-thumbs-up"></i>
  5. <span class="reply-count">{{ reply.liker_count }}</span>
  6. </a>
  7. {% else %}
  8. <a href="javascript:void(0);" style="padding:0" class="like-reply btn btn-sm like-no-active" data-id="{{ reply.id}}" title="赞">
  9. <i class="fa fa-thumbs-up"></i>
  10. <span class="reply-count">{{ reply.liker_count }}</span>
  11. </a>
  12. {% endif %}
  13. {%- endmacro %}
  14. {% macro no_replies() -%}
  15. <div class="panel-body">
  16. <span class="text-center" style="display:block;width:100%;color:#999">
  17. {{_('no reply')}}
  18. </span>
  19. </div>
  20. {%- endmacro %}