jQuery packaged in an handy django app to speed up new applications and deployment.
Project description
Requirements
Django 1.3 or later
Installation
$ pip install django-jquery
Setup
Just add 'django.contrib.staticfiles' and 'jquery' to INSTALLED_APPS in your settings.py:
INSTALLED_APPS = ( # ... 'django.contrib.staticfiles', 'jquery', # ... )
Refer to Django static files documentation to configure and deploy static files.
Usage
You can refer to jquery in your template with:
{{ STATIC_URL }}js/jquery.js
Admin template customization:
{% extends "admin/base_site.html" %} {% block extrahead %} <script type="text/javascript" src="{{ STATIC_URL }}js/jquery.js" /> {% endblock %}
Custom widget:
class MyWidget(forms.TextInput): class Media: js = ('js/jquery.js',) def render(self, name, value, attrs=None): html = super(MyWidget, self).render(name, value, attrs=attrs) # ... return html
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-jquery-1.12.3.tar.gz
(37.2 kB
view details)
Built Distribution
File details
Details for the file django-jquery-1.12.3.tar.gz
.
File metadata
- Download URL: django-jquery-1.12.3.tar.gz
- Upload date:
- Size: 37.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 307331b0b26e20d40f53e18cf13c054a50e3cad2ac44951b53ce620c8ace24b1 |
|
MD5 | c52083df5ff8337d96e40fa55d72d9fc |
|
BLAKE2b-256 | bfa6f575d6bb5f2bcce9e94984ab34f6432f2e1d30e72fc6311572d868f8d27c |
File details
Details for the file django_jquery-1.12.3-py2.py3-none-any.whl
.
File metadata
- Download URL: django_jquery-1.12.3-py2.py3-none-any.whl
- Upload date:
- Size: 37.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 751cd7b8bf3d4e0fd5bdf729cc64d15d24455cf67a3898a947a0644594b47ba8 |
|
MD5 | 4339b09f47436beea4493170937317e3 |
|
BLAKE2b-256 | 31b293f16769de9beb2646613742db54e8acb21857aacce72ffe779f4e13245c |