Skip to main content

A Django 1.3+ template tag to keep JavaScript out of your templates.

Project description

JSInclude [![Build Status](https://travis-ci.org/cobbdb/jsinclude.png?branch=master)](https://travis-ci.org/cobbdb/jsinclude)
=========

### A Django 1.3+ template tag to keep JavaScript out of your templates.

$ pip install jsinclude

Example of use:
> ```
<!-- template.html -->
{% load jsinclude %}
{% jsinclude widgets/profile.js Jane Doe female 31 %}
{% jsinclude widgets/nametag.js 'John Doe' %}
```
```JavaScript
// nametag.js
var name = $jsi.$static[0]
console.log('Hi, my name is ' + name);
```

Syntax:

{% jsinclude <path_to_script> [{arg}] %}

-----------

## $jsi
JSInclude exposes the ``$jsi`` object scoped only to the included
template.

## $jsi.&lt;name&gt;
The ``$jsi`` object contains any Django template variables
preserving original naming.

## $jsi.$static
The ``$jsi`` object also contains the ``$static`` array containing
any static arguments passed into the Django template tag - preserving
order.

-----------

### Configuration:

# settings.py
JSINCLUDE_STATIC_PATH = 'required/path/to/static/files'
JSINCLUDE_WRAP_PATH = 'optional/path/to/custom.template'

### Dependencies:
* [rjsmin](http://opensource.perlig.de/rjsmin/doc-1.0/index.html)

------------------------

* License: MIT
* by Cox Media Group
* Dan Cobb <dan.cobb@coxinc.com>
* Derek Anderson <derek.anderson@coxinc.com>

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

jsinclude-1.0.3.tar.gz (9.3 kB view hashes)

Uploaded Source

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