From PyPI using pip.
$ pip install django_fmft
This is the preferred method to install Django Filtered Model Formset Tables, as it will always install the most recent stable release.
The sources for Django Filtered Model Formset Tables can be downloaded from the Github repo
.
You can either clone the public repository:
$ git clone git://github.com/powderflask/django-fmft
Or download the tarball:
$ curl -OJL https://github.com/powderflask/django-fmft/tarball/master
Once you have a copy of the source, you can install it with:
$ pip install {PATH-TO-PACKAGE-DIRECTORY}
Once installed, add django-fmft
to your INSTALLED_APPS
.
INSTALLED_APPS = [
...
'django_fmft',
...
]