Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728
  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>