You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
547 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();
  12. }
  13. {% if group.group_type == "Forum" -%}
  14. website.toggle_edit(true);
  15. {% elif group.group_type == "Tasks" %}
  16. website.toggle_edit();
  17. {% elif group.group_type == "Events" %}
  18. website.toggle_edit();
  19. website.format_event_timestamps();
  20. {%- endif %}
  21. });
  22. </script>