Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. I think my VB local data is broken. Maybe when I created a new collection.
  2.  
  3. Was working before then. Can the VB be rebuilt ?.
  4.  
  5. kerry.lasvegasweekly.com:8000/events
  6.  
  7. 'Event' object is not iterable
  8.  
  9. {% load mogrify typogrify %}
  10. <div class="featEvts">
  11. <div class="wrapper container_16">
  12. <div class="grid_16">
  13. <div class="sectionTitle">
  14. <h2>Featured Events</h2>
  15. <span class="small">Editors Picks</span>
  16. </div>
  17. <div class="featThumbs">
  18. <ul>
  19.  
  20. {% if featured_events %}
  21. not empty
  22. {% endif %}
  23.  
  24. {% for event in featured_events|slice:":6" %} "ERROR here"
  25.  
  26. {% endfor %}
  27. </ul>
  28.  
  29.  
  30. </div><!-- end .featThumbs -->
  31. </div><!-- end .grid_16 -->
  32. </div><!-- end wrapper -->
  33. </div><!-- end .featEvts -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement