Guest User

Untitled

a guest
Aug 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. Getting the next item in a loop
  2. {% regroup communities|dictsort:"in_country" by in_country as community_list %}
  3.  
  4. {% for in_country in community_list %}
  5. <h2 style="font-size:16px;">{{ in_country.grouper }}</h2>
  6.  
  7. <table cellspacing="0">
  8. {% for item in in_country.list|dictsort:"name" %}
  9.  
  10. <tr style="text-align:center;">
  11. <td width="200px" class='community_table'>
  12. <img src="{{ item.image }}" style="height:40px;"><br />
  13. <a href='{{ item.url }}' style="font-size:10px; margin-left:10px;" TARGET = "_blank">{{ item.name }}</a><br />
  14. {{ item.com_type }}<br />
  15. {{ item.in_city }}<br />
  16. </td>
  17.  
  18. <td width="200px" class='community_table'>
  19. <img src="{{ item.image }}" style="height:40px;"><br />
  20. <a href='{{ item.url }}' style="font-size:10px; margin-left:10px;" TARGET = "_blank">{{ item.name }}</a><br />
  21. {{ item.com_type }}<br />
  22. {{ item.in_city }}<br />
  23. </td>
  24.  
  25. <td width="200px" class='community_table'>
  26. <img src="{{ item.image }}" style="height:40px;"><br />
  27. <a href='{{ item.url }}' style="font-size:10px; margin-left:10px;" TARGET = "_blank">{{ item.name }}</a><br />
  28. {{ item.com_type }}<br />
  29. {{ item.in_city }}<br />
  30. </td>
  31.  
  32. <td width="200px" class='community_table'>
  33. <img src="{{ item.image }}" style="height:40px;"><br />
  34. <a href='{{ item.url }}' style="font-size:10px; margin-left:10px;" TARGET = "_blank">{{ item.name }}</a><br />
  35. {{ item.com_type }}<br />
  36. {{ item.in_city }}<br />
  37. </td>
  38.  
  39. {% endfor %}
  40. </table>
  41.  
  42. {% endfor %}
  43.  
  44. <table cellspacing="0">
  45. {% for item in in_country.list|dictsort:"name" %}
  46.  
  47. {% if forloop.counter0|divisibleby:4 %}
  48. <tr style="text-align:center;">
  49. {% endif %}
  50.  
  51. <td width="200px" class='community_table'>
  52. <img src="{{ item.image }}" style="height:40px;"><br />
  53. <a href='{{ item.url }}' style="font-size:10px; margin-left:10px;" TARGET = "_blank">{{ item.name }}</a><br />
  54. {{ item.com_type }}<br />
  55. {{ item.in_city }}<br />
  56. </td>
  57.  
  58. {% if forloop.counter|divisibleby:4 %}
  59. </tr>
  60. {% endif %}
  61.  
  62. {% endfor %}
  63. </table>
  64.  
  65. my_iter = iter(my_list)
  66. grouped = zip(my_iter, my_iter, my_iter, my_iter) # or zip(*[my_iter]*4)
Add Comment
Please, Sign In to add comment