# django-static-base [![PyPi license](https://img.shields.io/pypi/l/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)
[![PyPi status](https://img.shields.io/pypi/status/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)
[![PyPi version](https://img.shields.io/pypi/v/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)
[![PyPi python version](https://img.shields.io/pypi/pyversions/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)
[![PyPi downloads](https://img.shields.io/pypi/dm/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)
[![PyPi downloads](https://img.shields.io/pypi/dw/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)
[![PyPi downloads](https://img.shields.io/pypi/dd/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)
## GitHub ![GitHub release](https://img.shields.io/github/tag/DLRSP/django-static-base.svg) ![GitHub release](https://img.shields.io/github/release/DLRSP/django-static-base.svg)
## Test [![codecov.io](https://codecov.io/github/DLRSP/django-static-base/coverage.svg?branch=main)](https://codecov.io/github/DLRSP/django-static-base?branch=main) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DLRSP/django-static-base/main.svg)](https://results.pre-commit.ci/latest/github/DLRSP/django-static-base/main) [![gitthub.com](https://github.com/DLRSP/django-static-base/actions/workflows/ci.yaml/badge.svg)](https://github.com/DLRSP/django-static-base/actions/workflows/ci.yaml)
## Check Demo Project
* Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-static-base)
## Requirements
- Python 3.8+ supported.
- Django 3.2+ supported.
## Setup
1. Install from **pip**:
```shell
pip install django-static-base
```
2. Add `'static_base'` to your `INSTALLED_APPS` setting.
``` python title="settings.py"
INSTALLED_APPS = [
# ...other apps
"static_base"
]
```
3. Add the following pre-requisites to your `base.html` template
``` html title="base.html"
<html>
<head>
...
<link rel="stylesheet" type="text/css" href="{% static 'base/css/bootstrap.css' %}">
...
</head>
<body>
...
<script type="text/javascript" src="{% static 'base/js/jquery.min.js' %}"></script>
<script type="text/javascript" src="{% static 'base/js/bootstrap.min.js' %}"></script>
<script type="text/javascript" src="{% static 'base/js/plugins/lazysizes.min.js' %}" async></script>
...
<script type="module" src="{% static 'base/js/plugins/instantpage.min.js' %}" defer></script>
</body>
</html>
```
4. Add all your needed plugins or customization to your `base.html` template or sub-templates used by your project
``` html title="base.html"
<html>
<head>
...
<link rel="stylesheet" type="text/css" href="{% static 'base/css/plugins/jquery.smartmenus.bootstrap-4.css' %}">
...
<link rel="stylesheet" type="text/css" href="{% static 'base/css/style-btn.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'base/css/color/blue.css' %}">
...
<link rel="stylesheet" type="text/css" href="{% static 'base/css/custom.css' %}">
...
</head>
<body>
...
<script type="text/javascript" src="{% static 'base/js/jquery.min.js' %}"></script>
<script type="text/javascript" src="{% static 'base/js/bootstrap.min.js' %}"></script>
...
<script type="module" src="{% static 'base/js/plugins/instantpage.min.js' %}" defer></script>
</body>
</html>
```
## Run Example Project
```shell
git clone --depth=50 --branch=django-static-base https://github.com/DLRSP/example.git DLRSP/example
cd DLRSP/example
python manage.py runserver
```
Now browser the app @ http://127.0.0.1:8000
Raw data
{
"_id": null,
"home_page": "https://github.com/DLRSP/django-static-base",
"name": "django-static-base",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "django",
"author": "DLRSP",
"author_email": "dlrsp.dev@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/3d/62/1dbf2385dea31ed630e7bacf11e2aec6c0f016e651c0b9b87dafcbb462f3/django_static_base-0.2.0.tar.gz",
"platform": null,
"description": "# django-static-base [![PyPi license](https://img.shields.io/pypi/l/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)\n\n[![PyPi status](https://img.shields.io/pypi/status/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)\n[![PyPi version](https://img.shields.io/pypi/v/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)\n[![PyPi python version](https://img.shields.io/pypi/pyversions/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)\n[![PyPi downloads](https://img.shields.io/pypi/dm/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)\n[![PyPi downloads](https://img.shields.io/pypi/dw/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)\n[![PyPi downloads](https://img.shields.io/pypi/dd/django-static-base.svg)](https://pypi.python.org/pypi/django-static-base)\n\n## GitHub ![GitHub release](https://img.shields.io/github/tag/DLRSP/django-static-base.svg) ![GitHub release](https://img.shields.io/github/release/DLRSP/django-static-base.svg)\n\n## Test [![codecov.io](https://codecov.io/github/DLRSP/django-static-base/coverage.svg?branch=main)](https://codecov.io/github/DLRSP/django-static-base?branch=main) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DLRSP/django-static-base/main.svg)](https://results.pre-commit.ci/latest/github/DLRSP/django-static-base/main) [![gitthub.com](https://github.com/DLRSP/django-static-base/actions/workflows/ci.yaml/badge.svg)](https://github.com/DLRSP/django-static-base/actions/workflows/ci.yaml)\n\n## Check Demo Project\n* Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-static-base)\n\n## Requirements\n- Python 3.8+ supported.\n- Django 3.2+ supported.\n\n## Setup\n1. Install from **pip**:\n ```shell\n pip install django-static-base\n ```\n\n2. Add `'static_base'` to your `INSTALLED_APPS` setting.\n\n ``` python title=\"settings.py\"\n INSTALLED_APPS = [\n # ...other apps\n \"static_base\"\n ]\n ```\n\n3. Add the following pre-requisites to your `base.html` template\n\n ``` html title=\"base.html\"\n <html>\n <head>\n ...\n <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'base/css/bootstrap.css' %}\">\n ...\n </head>\n <body>\n ...\n <script type=\"text/javascript\" src=\"{% static 'base/js/jquery.min.js' %}\"></script>\n <script type=\"text/javascript\" src=\"{% static 'base/js/bootstrap.min.js' %}\"></script>\n <script type=\"text/javascript\" src=\"{% static 'base/js/plugins/lazysizes.min.js' %}\" async></script>\n ...\n <script type=\"module\" src=\"{% static 'base/js/plugins/instantpage.min.js' %}\" defer></script>\n </body>\n </html>\n ```\n\n4. Add all your needed plugins or customization to your `base.html` template or sub-templates used by your project\n\n ``` html title=\"base.html\"\n <html>\n <head>\n ...\n <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'base/css/plugins/jquery.smartmenus.bootstrap-4.css' %}\">\n ...\n <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'base/css/style-btn.css' %}\">\n <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'base/css/color/blue.css' %}\">\n ...\n <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'base/css/custom.css' %}\">\n ...\n </head>\n <body>\n ...\n <script type=\"text/javascript\" src=\"{% static 'base/js/jquery.min.js' %}\"></script>\n <script type=\"text/javascript\" src=\"{% static 'base/js/bootstrap.min.js' %}\"></script>\n ...\n <script type=\"module\" src=\"{% static 'base/js/plugins/instantpage.min.js' %}\" defer></script>\n </body>\n </html>\n ```\n\n## Run Example Project\n\n```shell\ngit clone --depth=50 --branch=django-static-base https://github.com/DLRSP/example.git DLRSP/example\ncd DLRSP/example\npython manage.py runserver\n```\n\nNow browser the app @ http://127.0.0.1:8000\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Django's application to serve up-to-date common static files (JQuery, Bootstrap, Plugins, ...) as \"base\" static directory",
"version": "0.2.0",
"project_urls": {
"Documentation": "https://dlrsp.github.io/django-static-base/",
"Homepage": "https://github.com/DLRSP/django-static-base",
"Source": "https://github.com/DLRSP/django-static-base",
"Tracker": "https://github.com/DLRSP/django-static-base/issues"
},
"split_keywords": [
"django"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4d3e31556fde1aeff7c5151a2bdae1980aadcdca52a25522da6e2b47ded595be",
"md5": "f2073ac97efe106a4e87ff017fecb186",
"sha256": "3ba5b7aa5f5365f96d08b583d576225bc002fded2bebd138eb87249dcae61b3e"
},
"downloads": -1,
"filename": "django_static_base-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f2073ac97efe106a4e87ff017fecb186",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.8",
"size": 5506833,
"upload_time": "2024-04-14T19:19:53",
"upload_time_iso_8601": "2024-04-14T19:19:53.460528Z",
"url": "https://files.pythonhosted.org/packages/4d/3e/31556fde1aeff7c5151a2bdae1980aadcdca52a25522da6e2b47ded595be/django_static_base-0.2.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d621dbf2385dea31ed630e7bacf11e2aec6c0f016e651c0b9b87dafcbb462f3",
"md5": "57ea461241eba8e23c25311714434b92",
"sha256": "7aaae48305ea5ab58f6866383406afd2bfedcfff18939be4112bd1e711ed96cc"
},
"downloads": -1,
"filename": "django_static_base-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "57ea461241eba8e23c25311714434b92",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 5375457,
"upload_time": "2024-04-14T19:19:55",
"upload_time_iso_8601": "2024-04-14T19:19:55.821219Z",
"url": "https://files.pythonhosted.org/packages/3d/62/1dbf2385dea31ed630e7bacf11e2aec6c0f016e651c0b9b87dafcbb462f3/django_static_base-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-04-14 19:19:55",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "DLRSP",
"github_project": "django-static-base",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "django-static-base"
}