Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

forum.html 546 B

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