/my-django-extensions

Created this to reuse what I have produced before. You can get a lot of fine extensions for django here.

Primary LanguagePythonMIT LicenseMIT

My Django Extensions

Created this to reuse what I have produced before. You can get a lot of fine extensions for django here.

Getting It

You can get My Django Extensions by using pip:

$ pip install git+https://github.com/aamishbaloch/my-django-extensions.git

Installing It

To enable my_django_extensions in your project you need to add it to INSTALLED_APPS in your projects settings.py file:

INSTALLED_APPS = (
    ...
    'my_django_extensions',
    ...
)