Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. // my_list.html
  2. {% extends "skeleton/base.html" %}
  3.  
  4. {% load el_pagination_tags %}
  5.  
  6. {% block custom_stylesheet %}
  7. {% endblock %}
  8.  
  9.  
  10. {% block content %}
  11. {% include page_template %}
  12. {% endblock %}
  13.  
  14.  
  15. {% block custom_js %}
  16. <script src="{% static 'el-pagination/js/el-pagination.js' %}"></script>
  17. <script>
  18. $.endlessPaginate({
  19. paginateOnScroll: true,
  20. paginateOnScrollMargin: 50
  21. });
  22. </script>
  23. {% javascript "clien" %}
  24.  
  25. <script>
  26. $('.like').change(function() { // ajax로 새로이 load되는 element들에는 작동이 안함!
  27. alert(checked);
  28. })
  29. </script>
  30. {% endblock %}
  31.  
  32.  
  33.  
  34.  
  35.  
  36. // my_list_page.html
  37. {% load el_pagination_tags %}
  38.  
  39. <div>
  40. {% for post in posts %}
  41. <div>{{ post }}</div>
  42. <input class="like">
  43. {% endfor %}
  44. </div>
  45.  
  46. {% show_more %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement