Advertisement
Darkolius

Untitled

Nov 13th, 2020
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. {% for article in articles %}
  2.  
  3. {% cycle forloop.counter as nr %}
  4.  
  5. {% if nr == 3 %}
  6.     {% resetcycle nr%}
  7. {% endif %}
  8.  
  9.     <div class="col-sm">
  10.       <p><a href="{% url 'blog:article-detail' article.id %}">{{ article.title }}</a></p>
  11.     </div>
  12.  
  13. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement