Django template filter for splitting a list into columns.
Project description
Django template filter for splitting a list into columns.
Documentation
The full documentation is at https://django-columns.readthedocs.org.
Quickstart
Install the package. At the command line:
$ pip install django-columns
Add columns to INSTALLED_APPS.
Split a list into 2 lists, to fill 2 columns:
{% load columns %} <div class="row"> {% for col in mylist|columns:3 %} <div class="col-md-4"> {% for item in col %} <div class="item">{{ item }}</div> {% endfor %} </div><!-- /col-md-4 --> {% endfor %} </div><!-- /row -->
History
0.1.0 (2014-05-12)
First release on PyPI.