script tag with additional attributes for django.forms.Media
Project description
Usage
Use this to insert a script tag via forms.Media containing additional attributes (such as id and data-* for CSP-compatible data injection.):
from js_asset import JS
forms.Media(js=[
JS("asset.js", {
"id": "asset-script",
"data-answer": "42",
}),
])
The rendered media tag (via {{ media.js }} or {{ media }} will now contain a script tag as follows, without line breaks:
<script type="text/javascript" src="/static/asset.js"
data-answer="42" id="asset-script"></script>
The attributes are automatically escaped. The data attributes may now be accessed inside asset.js:
var answer = document.querySelector("#asset-script").dataset.answer;
Also, because the implementation of static differs between supported Django versions (older do not take the presence of django.contrib.staticfiles in INSTALLED_APPS into account), a js_asset.static function is provided which does the right thing automatically.
When adding external script assets, you should pass static=False to the JS object to avoid passing the script URL through static(). In this case, you probably want to add defer or async, and maybe also integrity and crossorigin attributes. Please note that boolean attributes are not properly supported when using Django before 4.1 so specify them as follows:
JS(
"https://cdn.example.com/script.js",
{"defer": "defer"},
static=False,
)
Compatibility
At the time of writing this app is compatible with Django 1.8 and better (up to and including the Django master branch), but have a look at the tox configuration for definitive answers.
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
Built Distribution
File details
Details for the file django_js_asset-2.2.0.tar.gz
.
File metadata
- Download URL: django_js_asset-2.2.0.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c57a82cae2317e83951d956110ce847f58ff0cdc24e314dbc18b35033917e94 |
|
MD5 | 23ffa09cbeff00163360467375cfd5be |
|
BLAKE2b-256 | 28bb04accb19b0c0b6d835a393c20f04dfc379648e8cd6654c045e4d843ad527 |
File details
Details for the file django_js_asset-2.2.0-py3-none-any.whl
.
File metadata
- Download URL: django_js_asset-2.2.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ef3e858e13d06f10799b56eea62b1e76706f42cf4e709be4e13356bc0ae30d8 |
|
MD5 | 659f5be139ddf5182deea423ae6f3a1c |
|
BLAKE2b-256 | dc4d5bb8c351f2515a616576a4218c736af081edf0dd4d1eead1c7e880f74c0e |