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.9.1.tar.gz
(34.5 kB
view details)
File details
Details for the file django-jquery-1.9.1.tar.gz.
File metadata
- Download URL: django-jquery-1.9.1.tar.gz
- Upload date:
- Size: 34.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70df837586a69607acb82a1d35a10d11e0dc11403949e4a2f3c2fcc726036abb
|
|
| MD5 |
6e61e1a0205fd7acb3b4f75e26898535
|
|
| BLAKE2b-256 |
ff7966abbf4f2f5af90acaf9f68fdabc899f9a68a881d9892451c1b9e0651a43
|