|
1234567891011121314151617181920212223242526272829303132 |
- <div class="small text-muted post-list-help"></div>
- <div class="post-list">
- {{ post_list_html }}
- </div>
- <div class="text-center">
- <button class="btn btn-default btn-more hide">More</button>
- </div>
-
- <script>
- $(function() {
- if($(".post").length===20) {
- wn.setup_pagination($(".btn-more"), {
- args: {
- cmd: "webnotes.templates.website_group.tasks.get_post_list_html",
- limit_start: $(".post").length,
- limit_length: 20,
- group: website.group,
- view: website.view,
- status: "Closed" ? view=="closed" : undefined
- },
- $wrapper: $(".post-list")
- });
- }
-
- {%- if view.name == "open" -%}
- website.setup_upvote();
- website.toggle_upvote();
- {%- endif -%}
-
- website.toggle_edit();
- });
- </script>
|