{ "info": { "author": "Peter Bittner", "author_email": "django@bittner.it", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities" ], "description": "==============================================\nDjango Bootstrap Static Files |latest-version|\n==============================================\n\n|bootstrap| |jquery| |fontawesome|\n\nBootstrap and optional Font Awesome static files ready for the picking.\n\nAlso ships the latest jQuery compatible with Bootstrap, for optional inclusion.\n\n.. |latest-version| image:: https://img.shields.io/pypi/v/django-bootstrap-static.svg\n :alt: Latest version on PyPI\n :target: https://pypi.python.org/pypi/django-bootstrap-static\n.. |bootstrap| image:: https://img.shields.io/badge/Bootstrap-v4.0.0-563d7c.svg\n :alt: Bootstrap 4.0.0\n :target: https://getbootstrap.com/\n.. |jquery| image:: https://img.shields.io/badge/jQuery-v3.3.1-0769ad.svg\n :alt: jQuery 3.3.1\n :target: https://jquery.com/\n.. |fontawesome| image:: https://img.shields.io/badge/Font_Awesome-v5.0.6-1c9a71.svg\n :alt: Font Awesome 5.0.6\n :target: https://fontawesome.com/icons?m=free\n\nInstall\n=======\n\n.. code-block:: bash\n\n pip install django-bootstrap-static\n\nConfiguration\n=============\n\nTo pickup Bootstrap static files, simply include ``'bootstrap'``, and optionally\n``'fontawesome'``, in your ``INSTALLED_APPS``:\n\n.. code-block:: python\n\n INSTALLED_APPS = [\n # ...\n 'bootstrap',\n 'fontawesome',\n ]\n\nThen you can include CSS and JavaScript as usual static resources, e.g. using\n``{% static '...' %}`` in your base template as follows:\n\n.. code-block:: django\n\n {% load static %}\n
\n \n \n \n \n ...\n \n \n \n\nNote that in the above code sample we use SVG powered Font Awesome, as\nrecommended by their docs. You can use Font Awesome the classic way by\nreplacing the ``