25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

29 satır
621 B

  1. <div class="small text-muted post-list-help"></div>
  2. <div class="post-list">
  3. {{ post_list_html }}
  4. </div>
  5. <div class="text-center">
  6. <button class="btn btn-default btn-more hide">More</button>
  7. </div>
  8. <script>
  9. $(function() {
  10. if($(".post").length===20) {
  11. wn.setup_pagination($(".btn-more"), {
  12. args: {
  13. cmd: "webnotes.templates.website_group.forum.get_post_list_html",
  14. limit_start: $(".post").length,
  15. limit_length: 20,
  16. group: website.group,
  17. view: website.view
  18. },
  19. $wrapper: $(".post-list")
  20. });
  21. }
  22. website.toggle_edit(true);
  23. website.setup_upvote();
  24. website.toggle_upvote();
  25. });
  26. </script>