django-wildewidgets


Namedjango-wildewidgets JSON
Version 0.16.13 PyPI version JSON
download
home_pagehttps://github.com/caltechads/django-wildewidgets
Summarydjango-wildewidgets is a Django design library providing several tools for building full-featured, widget-based web applications with a standard, consistent design, based on Bootstrap.
upload_time2024-02-03 01:59:31
maintainer
docs_urlNone
authorCaltech IMSS ADS
requires_python
license
keywords design widget django
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ```
     _ _                                     _ _     _               _     _            _       
    | (_)                                   (_) |   | |             (_)   | |          | |      
  __| |_  __ _ _ __   __ _  ___ _____      ___| | __| | _____      ___  __| | __ _  ___| |_ ___ 
 / _` | |/ _` | '_ \ / _` |/ _ \___\ \ /\ / / | |/ _` |/ _ \ \ /\ / / |/ _` |/ _` |/ _ \ __/ __|
| (_| | | (_| | | | | (_| | (_) |   \ V  V /| | | (_| |  __/\ V  V /| | (_| | (_| |  __/ |_\__ \
 \__,_| |\__,_|_| |_|\__, |\___/     \_/\_/ |_|_|\__,_|\___| \_/\_/ |_|\__,_|\__, |\___|\__|___/
     _/ |             __/ |                                                   __/ |             
    |__/             |___/                                                   |___/              
```

`django-wildewidgets` is a Django design library providing several tools for building
full-featured, widget-based web applications with a standard, consistent design, based 
on Bootstrap.

The package includes the source to a [demo](https://wildewidgets.caltech.edu).

## Quick start

Install:

    pip install django-wildewidgets

If you plan on using [Altair charts](https://github.com/altair-viz/altair), run:

    pip install altair

Add "wildewidgets" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'wildewidgets',
    ]


Include the wildewidgets URLconf in your project urls.py like this:

    from wildewidgets import WildewidgetDispatch

    urlpatterns = [
        ...
        path('<urlbasepath>/wildewidgets_json', WildewidgetDispatch.as_view(), name='wildewidgets_json'),
    ]


Add the appropriate resources to your template files.

First, add this to your `<head>`:

    <link rel="stylesheet" href="{% static 'wildewidgets/css/wildewidgets.css' %}"> 

For [ChartJS](https://www.chartjs.org/) (regular business type charts), add the corresponding javascript file:

    <script src="https://cdn.jsdelivr.net/npm/chart.js@2.9.4/dist/Chart.min.js"></script> 

For [Altair](https://github.com/altair-viz/altair) (scientific charts), use:

    <script src="https://cdn.jsdelivr.net/npm/vega@5"></script>
    <script src="https://cdn.jsdelivr.net/npm/vega-lite@4"></script>
    <script src="https://cdn.jsdelivr.net/npm/vega-embed@6"></script>  

For [DataTables](https://github.com/DataTables/DataTables), use:

    <script src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js"></script>
    <script src="https://cdn.datatables.net/plug-ins/1.10.21/sorting/datetime-moment.js"></script>

and:

    <link href="https://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css" rel="stylesheet" />

and, if using [Tabler](https://tabler.io), include:

    <link rel="stylesheet" href="{% static 'css/table_extra.css' %}"> 

For [ApexCharts](https://apexcharts.com), use:

    <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>

If you plan on using CodeWidget, you'll need to include the following to get syntax highlighting:

    <link rel="stylesheet" href="{% static 'css/highlighting.css' %}"> 

## Documentation

[django-wildewidgets.readthedocs.io](http://django-wildewidgets.readthedocs.io/) is the full
reference for django-wildewidgets.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/caltechads/django-wildewidgets",
    "name": "django-wildewidgets",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "design,widget,django",
    "author": "Caltech IMSS ADS",
    "author_email": "imss-ads-staff@caltech.edu",
    "download_url": "https://files.pythonhosted.org/packages/78/f0/fd9ef2148d4adc5bcaf3a164a60d13ebce15ec2bd52d658f9570a60ba1a9/django-wildewidgets-0.16.13.tar.gz",
    "platform": null,
    "description": "```\n     _ _                                     _ _     _               _     _            _       \n    | (_)                                   (_) |   | |             (_)   | |          | |      \n  __| |_  __ _ _ __   __ _  ___ _____      ___| | __| | _____      ___  __| | __ _  ___| |_ ___ \n / _` | |/ _` | '_ \\ / _` |/ _ \\___\\ \\ /\\ / / | |/ _` |/ _ \\ \\ /\\ / / |/ _` |/ _` |/ _ \\ __/ __|\n| (_| | | (_| | | | | (_| | (_) |   \\ V  V /| | | (_| |  __/\\ V  V /| | (_| | (_| |  __/ |_\\__ \\\n \\__,_| |\\__,_|_| |_|\\__, |\\___/     \\_/\\_/ |_|_|\\__,_|\\___| \\_/\\_/ |_|\\__,_|\\__, |\\___|\\__|___/\n     _/ |             __/ |                                                   __/ |             \n    |__/             |___/                                                   |___/              \n```\n\n`django-wildewidgets` is a Django design library providing several tools for building\nfull-featured, widget-based web applications with a standard, consistent design, based \non Bootstrap.\n\nThe package includes the source to a [demo](https://wildewidgets.caltech.edu).\n\n## Quick start\n\nInstall:\n\n    pip install django-wildewidgets\n\nIf you plan on using [Altair charts](https://github.com/altair-viz/altair), run:\n\n    pip install altair\n\nAdd \"wildewidgets\" to your INSTALLED_APPS setting like this:\n\n    INSTALLED_APPS = [\n        ...\n        'wildewidgets',\n    ]\n\n\nInclude the wildewidgets URLconf in your project urls.py like this:\n\n    from wildewidgets import WildewidgetDispatch\n\n    urlpatterns = [\n        ...\n        path('<urlbasepath>/wildewidgets_json', WildewidgetDispatch.as_view(), name='wildewidgets_json'),\n    ]\n\n\nAdd the appropriate resources to your template files.\n\nFirst, add this to your `<head>`:\n\n    <link rel=\"stylesheet\" href=\"{% static 'wildewidgets/css/wildewidgets.css' %}\"> \n\nFor [ChartJS](https://www.chartjs.org/) (regular business type charts), add the corresponding javascript file:\n\n    <script src=\"https://cdn.jsdelivr.net/npm/chart.js@2.9.4/dist/Chart.min.js\"></script> \n\nFor [Altair](https://github.com/altair-viz/altair) (scientific charts), use:\n\n    <script src=\"https://cdn.jsdelivr.net/npm/vega@5\"></script>\n    <script src=\"https://cdn.jsdelivr.net/npm/vega-lite@4\"></script>\n    <script src=\"https://cdn.jsdelivr.net/npm/vega-embed@6\"></script>  \n\nFor [DataTables](https://github.com/DataTables/DataTables), use:\n\n    <script src=\"https://cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js\"></script>\n    <script src=\"https://cdn.datatables.net/plug-ins/1.10.21/sorting/datetime-moment.js\"></script>\n\nand:\n\n    <link href=\"https://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css\" rel=\"stylesheet\" />\n\nand, if using [Tabler](https://tabler.io), include:\n\n    <link rel=\"stylesheet\" href=\"{% static 'css/table_extra.css' %}\"> \n\nFor [ApexCharts](https://apexcharts.com), use:\n\n    <script src=\"https://cdn.jsdelivr.net/npm/apexcharts\"></script>\n\nIf you plan on using CodeWidget, you'll need to include the following to get syntax highlighting:\n\n    <link rel=\"stylesheet\" href=\"{% static 'css/highlighting.css' %}\"> \n\n## Documentation\n\n[django-wildewidgets.readthedocs.io](http://django-wildewidgets.readthedocs.io/) is the full\nreference for django-wildewidgets.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "django-wildewidgets is a Django design library providing several tools for building full-featured, widget-based web applications with a standard, consistent design, based on Bootstrap.",
    "version": "0.16.13",
    "project_urls": {
        "Homepage": "https://github.com/caltechads/django-wildewidgets"
    },
    "split_keywords": [
        "design",
        "widget",
        "django"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe025100fd6fed373d5e1c7fc7faaca46e6eb0d17bfd4fbdaa621c27f7bba59d",
                "md5": "24b71197cbe7e08a777f4c334f0fe218",
                "sha256": "0675951722d82ba45236aa43d6d8674b6b6e084c1c8394f1ca5cf1f6a823969e"
            },
            "downloads": -1,
            "filename": "django_wildewidgets-0.16.13-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "24b71197cbe7e08a777f4c334f0fe218",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 133790,
            "upload_time": "2024-02-03T01:59:28",
            "upload_time_iso_8601": "2024-02-03T01:59:28.334934Z",
            "url": "https://files.pythonhosted.org/packages/fe/02/5100fd6fed373d5e1c7fc7faaca46e6eb0d17bfd4fbdaa621c27f7bba59d/django_wildewidgets-0.16.13-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78f0fd9ef2148d4adc5bcaf3a164a60d13ebce15ec2bd52d658f9570a60ba1a9",
                "md5": "52dad8c11cb60738efc195f5e642e06c",
                "sha256": "9298537987d3174451e87021cb3dd5d1930bc4252aefe3adaa7da0b9dafc51f7"
            },
            "downloads": -1,
            "filename": "django-wildewidgets-0.16.13.tar.gz",
            "has_sig": false,
            "md5_digest": "52dad8c11cb60738efc195f5e642e06c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 105680,
            "upload_time": "2024-02-03T01:59:31",
            "upload_time_iso_8601": "2024-02-03T01:59:31.156750Z",
            "url": "https://files.pythonhosted.org/packages/78/f0/fd9ef2148d4adc5bcaf3a164a60d13ebce15ec2bd52d658f9570a60ba1a9/django-wildewidgets-0.16.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-03 01:59:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "caltechads",
    "github_project": "django-wildewidgets",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "django-wildewidgets"
}
        
Elapsed time: 0.17582s