Skip to main content

Django template filter for splitting a list into columns.

Project description

https://badge.fury.io/py/django-columns.png https://travis-ci.org/audreyr/django-columns.png?branch=master https://coveralls.io/repos/audreyr/django-columns/badge.png?branch=master

Django template filter for splitting a list into columns.

Documentation

The full documentation is at https://django-columns.readthedocs.org.

Quickstart

  1. Install the package. At the command line:

    $ pip install django-columns
  2. Add columns to INSTALLED_APPS.

  3. 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.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page