{ "info": { "author": "Baldur \u00de\u00f3r Emilsson", "author_email": "baldur@baldur.biz", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: JavaScript", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7" ], "description": "django-updateable\n=================\n\ndjango-updateable adds template tags to automatically update parts of pages via AJAX.\n\nInstall\n-------\n\nYou can use pip to install:\n\n pip install django-updateable\n\nConfigure\n---------\n\nAfter installing django-updateable you must change a few settings in your settings.py\n\n* Add ``updateable`` to INSTALLED_APPS\n* Add ``updateable.middleware.UpdateableMiddleware`` to MIDDLEWARE_CLASSES\n* Be sure to use the ``django.core.context_processors.request`` in your TEMPLATE_CONTEXT_PROCESSORS\n\nUsage\n-----\n\nAdd updateable.js to the pages where you use updateable, e.g.\n````. Load the tags in your\ntemplate, ``{% load updateable %}``. Wrap the parts of you template you would\nlike to update automatically in ``{% updateable %}`` and\n``{% endupdateable %}`` tags.\n\nExample template\n----------------\n::\n\n {% load staticfiles updateable %}\n \n \n \n
\n