InstallationΒΆ

Django-vertical-multi-columns can be installed from PyPI with tools like pip:

pip install django-vertical-multi-columns

Add 'vertical-multi-columns' to your INSTALLED_APPS.

INSTALLED_APPS = [
    ...
    'vertical-multi-columns',
]

You can specify a default number of columns in your Django settings:

VERTICAL_MULTI_COLUMNS = [
        {'NUMBER_OF_COLUMNS': 3}
]

Django-vertical-multi-columns is tested against these versions of Python and Django.

  • Python: 3.7, 3.8, 3.9

  • Django: 2.2, 3.0, 3.1, 3.2