django-static-jquery-ui


Namedjango-static-jquery-ui JSON
Version 1.13.3.2 PyPI version JSON
download
home_pageNone
SummaryDjango application contains all jquery static files.
upload_time2025-10-23 03:03:33
maintainerrRR0VrFP
docs_urlNone
authorrRR0VrFP
requires_pythonNone
licenseMIT
keywords django-static-jquery-ui
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # django-static-jquery-ui


Django application contains all jquery static files.


## Install

```shell
pip install django-static-jquery-ui
```

## Settings

    INSTALLED_APPS = [
        ...
        'django_static_jquery_ui',
        ...
    ]

## Usage

### Example 1

Include jquery-ui resources in template file.

```html
{% load static %}

<link rel="stylesheet" href="{% static "jquery-ui/jquery-ui.min.css" %}" />
<script src="{% static "jquery-ui/external/jquery/jquery.js" %}"></script>
<script src="{% static "jquery-ui/jquery-ui.min.js" %}"></script>
```

### Example 2

Use "ui-lightness" theme and enable i18n for datepicker.

```html
{% load static %}

<link rel="stylesheet" href="{% static "jquery-ui/jquery-ui.min.css" %}" />
<link rel="stylesheet" href="{% static "jquery-ui/ui-lightness/theme.css" %}" />
<script src="{% static "jquery-ui/external/jquery/jquery.js" %}"></script>
<script src="{% static "jquery-ui/jquery-ui.min.js" %}"></script>
<script src="{% static "jquery-ui/i18n/datepicker-zh-Hans.js" %}"></script>
```

### Example 3

Includ jquery-ui resources in model admin site.

```python
class TestModelAdmin(admin.ModelAdmin):
    class Media:
        css = {
            "all": [
                "jquery-ui/jquery-ui.min.css",
                "jquery-ui/ui-lightness/theme.css",
            ]
        }
        js = [
            "jquery-ui/external/jquery/jquery.min.js",
            "jquery-ui/jquery-ui.min.js",
            "jquery-ui/i18n/datepicker-zh-Hans.js",
        ]
```


*Note:*

- You can use site's default jquery.js instead of jquery.js shipped in jquery-ui.


## About Release Versions

- The first three version number matches with jQuery UI's version number.
- The fourth version number is own release number.

## Release

### 1.13.3.2

- Doc update.

### 1.13.3.1

- Upgrade jquery-ui to v1.13.3.

### 1.13.2.1

- Upgrade jquery-ui to v1.13.2.

### 1.12.1.1

- Rename application name from jquery_ui to django_static_jquery_ui. **Note:** Rename is NOT backward compatible, please change the app name in INSTALLED_APPS inside settings.py.

### 1.12.1.0

- First release.
- Include all files of jquery-ui 1.12.1 and offical themes, all files are download from https://jqueryui.com/download/all/.
- Include i18n language files for datepicker widget which are download from the demo site.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "django-static-jquery-ui",
    "maintainer": "rRR0VrFP",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "django-static-jquery-ui",
    "author": "rRR0VrFP",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/1f/b3/47e5fa5166872e7fb90b28d4ea50f30a3018b4fd2c242d56fa350c8dc901/django_static_jquery_ui-1.13.3.2.tar.gz",
    "platform": null,
    "description": "# django-static-jquery-ui\n\n\nDjango application contains all jquery static files.\n\n\n## Install\n\n```shell\npip install django-static-jquery-ui\n```\n\n## Settings\n\n    INSTALLED_APPS = [\n        ...\n        'django_static_jquery_ui',\n        ...\n    ]\n\n## Usage\n\n### Example 1\n\nInclude jquery-ui resources in template file.\n\n```html\n{% load static %}\n\n<link rel=\"stylesheet\" href=\"{% static \"jquery-ui/jquery-ui.min.css\" %}\" />\n<script src=\"{% static \"jquery-ui/external/jquery/jquery.js\" %}\"></script>\n<script src=\"{% static \"jquery-ui/jquery-ui.min.js\" %}\"></script>\n```\n\n### Example 2\n\nUse \"ui-lightness\" theme and enable i18n for datepicker.\n\n```html\n{% load static %}\n\n<link rel=\"stylesheet\" href=\"{% static \"jquery-ui/jquery-ui.min.css\" %}\" />\n<link rel=\"stylesheet\" href=\"{% static \"jquery-ui/ui-lightness/theme.css\" %}\" />\n<script src=\"{% static \"jquery-ui/external/jquery/jquery.js\" %}\"></script>\n<script src=\"{% static \"jquery-ui/jquery-ui.min.js\" %}\"></script>\n<script src=\"{% static \"jquery-ui/i18n/datepicker-zh-Hans.js\" %}\"></script>\n```\n\n### Example 3\n\nInclud jquery-ui resources in model admin site.\n\n```python\nclass TestModelAdmin(admin.ModelAdmin):\n    class Media:\n        css = {\n            \"all\": [\n                \"jquery-ui/jquery-ui.min.css\",\n                \"jquery-ui/ui-lightness/theme.css\",\n            ]\n        }\n        js = [\n            \"jquery-ui/external/jquery/jquery.min.js\",\n            \"jquery-ui/jquery-ui.min.js\",\n            \"jquery-ui/i18n/datepicker-zh-Hans.js\",\n        ]\n```\n\n\n*Note:*\n\n- You can use site's default jquery.js instead of jquery.js shipped in jquery-ui.\n\n\n## About Release Versions\n\n- The first three version number matches with jQuery UI's version number.\n- The fourth version number is own release number.\n\n## Release\n\n### 1.13.3.2\n\n- Doc update.\n\n### 1.13.3.1\n\n- Upgrade jquery-ui to v1.13.3.\n\n### 1.13.2.1\n\n- Upgrade jquery-ui to v1.13.2.\n\n### 1.12.1.1\n\n- Rename application name from jquery_ui to django_static_jquery_ui. **Note:** Rename is NOT backward compatible, please change the app name in INSTALLED_APPS inside settings.py.\n\n### 1.12.1.0\n\n- First release.\n- Include all files of jquery-ui 1.12.1 and offical themes, all files are download from https://jqueryui.com/download/all/.\n- Include i18n language files for datepicker widget which are download from the demo site.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Django application contains all jquery static files.",
    "version": "1.13.3.2",
    "project_urls": null,
    "split_keywords": [
        "django-static-jquery-ui"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22e9b2ca4adfbbebc59ed189aadc1a71d6081dd1b659a183a50038d65c29e8f3",
                "md5": "3d6aa326500d5cc851761a70cae908d2",
                "sha256": "8cf8efb892533b34970fceb35921470c1fbabaad4c7bb27128bf23d6b428f7e3"
            },
            "downloads": -1,
            "filename": "django_static_jquery_ui-1.13.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3d6aa326500d5cc851761a70cae908d2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 1924641,
            "upload_time": "2025-10-23T03:03:31",
            "upload_time_iso_8601": "2025-10-23T03:03:31.742046Z",
            "url": "https://files.pythonhosted.org/packages/22/e9/b2ca4adfbbebc59ed189aadc1a71d6081dd1b659a183a50038d65c29e8f3/django_static_jquery_ui-1.13.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1fb347e5fa5166872e7fb90b28d4ea50f30a3018b4fd2c242d56fa350c8dc901",
                "md5": "1800a6ddad7f128614a840be87a7b466",
                "sha256": "a15aaa58807abf808b0ff9f499bccf23edc3a8e3f0d197d9881b149b9c39e3fc"
            },
            "downloads": -1,
            "filename": "django_static_jquery_ui-1.13.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "1800a6ddad7f128614a840be87a7b466",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1506447,
            "upload_time": "2025-10-23T03:03:33",
            "upload_time_iso_8601": "2025-10-23T03:03:33.571567Z",
            "url": "https://files.pythonhosted.org/packages/1f/b3/47e5fa5166872e7fb90b28d4ea50f30a3018b4fd2c242d56fa350c8dc901/django_static_jquery_ui-1.13.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-23 03:03:33",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "django-static-jquery-ui"
}
        
Elapsed time: 2.61314s