{ "info": { "author": "haos616", "author_email": "haos616@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Utilities" ], "description": "Django jQuery\n=============\n\n`JQuery `_ 2.1.4\n\nRequirements\n------------\n\n`Django `_ 1.4 or later\n\nInstallation\n------------\n\n::\n\n $ pip install django-static-jquery==2.1.4\n\nSetup\n-----\n\nJust add ``'django.contrib.staticfiles'`` and ``'django_static_jquery'`` to INSTALLED_APPS in\nyour settings.py::\n\n INSTALLED_APPS = (\n # ...\n\n 'django.contrib.staticfiles',\n 'django_static_jquery',\n\n # ...\n )\n\nRefer to Django `static files `_\ndocumentation to configure and deploy static files.\n\n\nUsage\n-----\n\nYou can refer to jquery in your template with::\n\n {% load staticfiles %}\n {% static 'static_jquery/js/jquery.js' %}\n\nAdmin template customization::\n\n {% load staticfiles %}\n\n {% extends \"admin/base_site.html\" %}\n\n {% block extrahead %}\n