Skip to main content

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


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.7.tar.gz (35.0 kB view details)

Uploaded Source

File details

Details for the file django-jquery-1.7.tar.gz.

File metadata

  • Download URL: django-jquery-1.7.tar.gz
  • Upload date:
  • Size: 35.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-jquery-1.7.tar.gz
Algorithm Hash digest
SHA256 5155ef74d0612819c3ab8ddb149c2c22cc499840a63a83e2dcd4fae4e12f4ed0
MD5 3cb7fe8131941a51d84b809ab70eae22
BLAKE2b-256 dc7168cc11d0aaa4139c4cc596b3d8957f66cfc3d2f3d9e67d58e5547c03e78e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page