Install

  1. Get it from PyPi:

    pip install crispy-forms-foundation
    
  2. Register app in your project settings:

    INSTALLED_APPS = (
        ...
        'crispy_forms',
        'crispy_forms_foundation',
        ...
    )
    
  3. Import default settings at the end of the settings file:

    from crispy_forms_foundation.settings import *
    

    Default template pack name used will be foundation-5.

    All other django-crispy-forms settings option apply, see its documentation for more details.