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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-columns-0.1.0.tar.gz (5.6 kB view details)

Uploaded Source

File details

Details for the file django-columns-0.1.0.tar.gz.

File metadata

File hashes

Hashes for django-columns-0.1.0.tar.gz
Algorithm Hash digest
SHA256 cd5ffb9b1e31908dba058344fc0e7def2367f13b6fa4c9a6b801e29fc864fdf9
MD5 695f7438e9fda0f752c9ad3ac61041ea
BLAKE2b-256 ac5a5178d6f6d070e91877b163a21f9990b57d62c9f146a41c8e3fcf0493e5b5

See more details on using hashes here.

Supported by

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