File: tree_list_results.html

package info (click to toggle)
python-django-treebeard 4.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 796 kB
  • ctags: 1,022
  • sloc: python: 4,868; makefile: 180
file content (8 lines) | stat: -rw-r--r-- 203 bytes parent folder | download
1
2
3
4
5
6
7
8
{% load cycle from future  %}
{% if results %}
    <ul>
        {% for result in results %}
            <li class="{% cycle 'row1' 'row2' %}">{{ result }}</li>
        {% endfor %}
    </ul>
{% endif %}