Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.19 KB

README.md

File metadata and controls

41 lines (25 loc) · 1.19 KB

django-pjaxr Build Status

How to install django-pjaxr?

There are just two steps needed to install django-pjaxr:

  1. Install django-pjaxr to your virtual env:

    pip install django-pjaxr
  2. Configure your django installation with the following lines:

    from django.template import add_to_builtins
    add_to_builtins('django_pjaxr.templatetags.pjaxr_extends')
    
    INSTALLED_APPS += ('django_pjaxr', )
    
    TEMPLATE_CONTEXT_PROCESSORS += ('django_pjaxr.context_processors.pjaxr_information',)
    
    DEFAULT_PJAXR_TEMPLATE = "django_pjaxr/pjaxr.html"

What do you need for django-pjaxr?

  1. Django >= 1.3
  2. jquery-pjaxr

Projects using django-pjaxr

  1. iekadou.com
  2. socialfunders.org
  3. minddust.com

If you are using django-pjaxr, please contact me, and tell me in which projects you are using it. Thank you!

Happy speeding up your django project!

For further information read django-pjaxr on iekadou.com