{ "info": { "author": "Timo Rieber", "author_email": "trieber@texperience.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.10", "Framework :: Django :: 1.11", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Intended Audience :: Developers", "License :: OSI Approved :: ISC License (ISCL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "Welcome to django-bootstrap-ui\n==============================\n\n.. image:: https://img.shields.io/travis/texperience/django-bootstrap-ui.svg?branch=master\n :target: https://travis-ci.org/texperience/django-bootstrap-ui\n\n.. image:: https://img.shields.io/coveralls/texperience/django-bootstrap-ui/master.svg\n :target: https://coveralls.io/r/texperience/django-bootstrap-ui?branch=master\n\n.. image:: https://img.shields.io/pypi/v/django-bootstrap-ui.svg\n :target: https://pypi.python.org/pypi/django-bootstrap-ui\n\n.. image:: https://img.shields.io/pypi/l/django-bootstrap-ui.svg\n :target: http://en.wikipedia.org/wiki/ISC_license\n\n.. image:: https://readthedocs.org/projects/django-bootstrap-ui/badge/?version=stable\n :target: http://django-bootstrap-ui.readthedocs.org/stable/\n\ndjango-bootstrap-ui aims to be a powerful Django app to ease the integration of the popular `Bootstrap UI framework`_. It is written in `Python`_ and built on the `Django web framework `_.\n\n.. _Bootstrap UI framework: http://getbootstrap.com/\n.. _Python: https://www.python.org/\n.. _Django web framework: https://www.djangoproject.com/\n\nFeatures\n--------\n\n* Full-featured Bootstrap 3 template (3.3.7)\n* Latest Font Awesome integration (4.7.0)\n* Built-in Bootstrap and `Bootswatch`_ themes (3.3.7)\n* Ready-to-use Bootstrap component templates\n* Intuitive template tag API for generating valid Bootstrap markup\n* Extensive and up-to-date documentation\n* Mainstream Python (2.7, 3.3, 3.4, 3.5, 3.6) and Django (1.8, 1.9, 1.10, 1.11) support\n* Outstanding test coverage\n* Continuously integrated codebase\n\n.. _Bootswatch: https://bootswatch.com/\n\nTechnical requirements\n----------------------\n\nBelow is the list of currently supported combinations of Django and Python:\n\n+------------+------------+--------------------+\n| # | Django | Python |\n+============+============+====================+\n| 1 | 1.8 | 2.7, 3.3, 3.4, 3.5 |\n+------------+------------+--------------------+\n| 2 | 1.9, 1.10 | 2.7, 3.4, 3.5 |\n+------------+------------+--------------------+\n| 3 | 1.11 | 2.7, 3.4, 3.5, 3.6 |\n+------------+------------+--------------------+\n\nInstallation\n------------\n\n#. First install the package using ``pip``:\n\n .. code:: bash\n\n pip install django-bootstrap-ui\n\n#. Add ``bootstrap_ui`` to your ``INSTALLED_APPS`` setting:\n\n .. code:: python\n\n INSTALLED_APPS = (\n ...\n 'bootstrap_ui',\n ...\n )\n\nUsage\n-----\n\nBootstrap template\n******************\n\nPrepare your page for Bootstrap and provide your content:\n\n#. Extend ``bootstrap-skeleton.html`` in your base template:\n\n .. code:: Django\n\n {% extends \"bootstrap_ui/bootstrap-skeleton.html\" %}\n\n#. Fill predefined blocks with your content:\n\n .. code:: Django\n\n {% block body-content %}\n

Hello, I'm using django-bootstrap-ui!

\n {% endblock %}\n\nThemes\n******\n\nYou can style your page with Bootstrap or Bootswatch themes. Set ``DJANGO_BOOTSTRAP_UI_THEME`` to a valid identifier in your ``settings.py`` for a project-wide default theme:\n\n.. code:: python\n\n # django-bootstrap-ui settings\n DJANGO_BOOTSTRAP_UI_THEME = 'bootswatch-paper'\n\nBootstrap component templates\n*****************************\n\nRender complete Bootstrap components by including our default implementations. Example:\n\n#. Provide a list of strings ``['alpha', 'beta', 'gamma']`` as template variable ``items``\n\n#. Include ``listgroup.html`` parameterized with ``type='list'`` and ``items=items``:\n\n .. code:: Django\n\n {% include 'bootstrap_ui/listgroup.html' with type='list' items=items only %}\n\nTemplate tag API\n****************\n\nGenerate your own, customized Bootstrap elements using our template tags. Example:\n\n#. Load ``bootstrap_ui_tags`` in your template:\n\n .. code:: Django\n\n {% load bootstrap_ui_tags %}\n\n#. Use Bootstrap components through intuitive template tags:\n\n .. code:: Django\n\n {% listgroup %}\n {% listgroupitem %}\n Your raw text.\n {% endlistgroupitem %}\n {% listgroupitem %}\n You may also use a {{ context_variable }}.\n {% endlistgroupitem %}\n {% endlistgroup %}\n\n#. Some Bootstrap components support different html tags, to change the default add a parameter:\n\n .. code:: Django\n\n {% listgroup use_tag=\"div\" %}\n ...\n Your list group content goes here.\n ...\n {% endlistgroup %}\n\nContinue reading in our `detailed documentation `_ at readthedocs.org.\n\nCode and contribution\n---------------------\n\nThe code is open source and released under the `ISC License (ISCL)`_. It is available on `GitHub`_ and follows the guidelines about `Semantic Versioning`_ for transparency within the release cycle and backward compatibility whenever possible.\n\nAll contributions are welcome, whether bug reports, code contributions and reviews, documentation or feature requests.\n\n.. _ISC License (ISCL): http://en.wikipedia.org/wiki/ISC_license\n.. _Semantic Versioning: http://semver.org/\n.. _GitHub: https://github.com/texperience/django-bootstrap-ui\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/texperience/django-bootstrap-ui", "keywords": "", "license": "ISC License (ISCL)", "maintainer": "", "maintainer_email": "", "name": "django-bootstrap-ui", "package_url": "https://pypi.org/project/django-bootstrap-ui/", "platform": "", "project_url": "https://pypi.org/project/django-bootstrap-ui/", "project_urls": { "Homepage": "https://github.com/texperience/django-bootstrap-ui" }, "release_url": "https://pypi.org/project/django-bootstrap-ui/0.5.1/", "requires_dist": [ "django (>=1.8,<1.12)", "django-tag-parser (<2.2,>=2.1)", "dominate (<2.2,>=2.1)", "coverage (>=4.0.3); extra == 'testing'", "flake8 (>=2.4.1); extra == 'testing'", "isort (>=4.2.0); extra == 'testing'" ], "requires_python": "", "summary": "This aims to be a powerful Django app to ease the integration of the popular Bootstrap UI framework (http://getbootstrap.com).", "version": "0.5.1" }, "last_serial": 4139733, "releases": { "0.1-alpha1": [], "0.1-alpha2": [ { "comment_text": "", "digests": { "md5": "c92f178c043bb3e434aab590047cbfbc", "sha256": "6567ad297ceb17fdf7cd8b6ae7257d1a12aa28b946b85596513139acece3dc38" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1_alpha2-py3-none-any.whl", "has_sig": false, "md5_digest": "c92f178c043bb3e434aab590047cbfbc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5223, "upload_time": "2015-05-02T22:22:13", "url": "https://files.pythonhosted.org/packages/71/f4/e1756603cc2e7e3f89010f5ea26f661a017f21d5d678345f14aa5676b04e/django_bootstrap_ui-0.1_alpha2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3bad3206ecfc7aed57278933c507039", "sha256": "66a54855582b242b833a0c726e740f101b1ecb3dd7a8195bfb664833244e03e1" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1-alpha2.tar.gz", "has_sig": false, "md5_digest": "d3bad3206ecfc7aed57278933c507039", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3134, "upload_time": "2015-05-02T22:22:16", "url": "https://files.pythonhosted.org/packages/9f/23/623c9f9daaa778201251e514ab9872bc8d76b1577b5eaa52a89b380fefbb/django-bootstrap-ui-0.1-alpha2.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "a6f3e4551611e78fed7de659eb014b96", "sha256": "4bab83cd913b63c91f186bad6f7127b65b3fe1d8de47f141aca0208419f6e9f8" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a6f3e4551611e78fed7de659eb014b96", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11272, "upload_time": "2015-08-03T21:13:11", "url": "https://files.pythonhosted.org/packages/5d/b1/20c5b5c68d5cb271eed46df82a057a37361bc090ccff2a99cb32ae435955/django_bootstrap_ui-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04058266dc1de97f94ecf05ffd05f544", "sha256": "6246882c8060745d2d760fed91a86f46d1f067408640e3c80e561f590f5ad54f" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1.0.tar.gz", "has_sig": false, "md5_digest": "04058266dc1de97f94ecf05ffd05f544", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7661, "upload_time": "2015-08-03T21:13:08", "url": "https://files.pythonhosted.org/packages/e8/25/72b51dc62ec17ded2ee2efaf502bb5a7def9b02df13a57b1b8693afb6489/django-bootstrap-ui-0.1.0.tar.gz" } ], "0.1.0-alpha.3": [ { "comment_text": "", "digests": { "md5": "1e3e7de9c34a94799195b4eedfbf17de", "sha256": "0c680c0227b85f0aa345dc4dc3beac01722d52b0d8c574f0298d9ef611e26c80" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1.0_alpha.3-py3-none-any.whl", "has_sig": false, "md5_digest": "1e3e7de9c34a94799195b4eedfbf17de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5940, "upload_time": "2015-05-05T06:49:11", "url": "https://files.pythonhosted.org/packages/20/f8/94e5c96cc2d532695fa5667d225959d202bf78d064681419e202cf2e342c/django_bootstrap_ui-0.1.0_alpha.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f0acd98e070172d45a278c1b40bacc1", "sha256": "26f567d03b7ee23c57f91af8edb644f212ce283b4e09c5a22dd727780373eed0" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1.0-alpha.3.tar.gz", "has_sig": false, "md5_digest": "1f0acd98e070172d45a278c1b40bacc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3603, "upload_time": "2015-05-05T06:49:14", "url": "https://files.pythonhosted.org/packages/18/7e/4d94dbd2892d5565ee68373a8fc35c388b9f835ab2726320da753d6738f8/django-bootstrap-ui-0.1.0-alpha.3.tar.gz" } ], "0.1.0a4": [ { "comment_text": "", "digests": { "md5": "016dc7f88ccc066ae67be6ecd2f05cd1", "sha256": "b3b91320fbb313bb9bfeaddf2727a85e1c77e8d58a902c31f75fb560c6cb8d46" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1.0a4-py2-none-any.whl", "has_sig": false, "md5_digest": "016dc7f88ccc066ae67be6ecd2f05cd1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5852, "upload_time": "2015-05-06T06:22:22", "url": "https://files.pythonhosted.org/packages/88/10/1d0c8045377a6f37de4893889ed3a581a0667fcccbffc0e7e2ad498bb1e5/django_bootstrap_ui-0.1.0a4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "552c5f7fed9b4695e6de06ee766fc98c", "sha256": "36f588035d7af3b897cb8911ff2fdccc563f93e4e5f75089f97b60977a93cac0" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1.0a4.tar.gz", "has_sig": false, "md5_digest": "552c5f7fed9b4695e6de06ee766fc98c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3613, "upload_time": "2015-05-06T06:22:19", "url": "https://files.pythonhosted.org/packages/28/ce/2182745fd268fa3e2194422f43b8d1168734fc087bed49452ef56136c3aa/django-bootstrap-ui-0.1.0a4.tar.gz" } ], "0.1.0a5": [ { "comment_text": "", "digests": { "md5": "2ee4501960bd5dea6d88d6246a22ccd7", "sha256": "13e8bef42180a050b7b9cc04ee2a79281b22e8174059cf500c2c1c65bff76d07" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1.0a5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ee4501960bd5dea6d88d6246a22ccd7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5855, "upload_time": "2015-05-06T07:11:19", "url": "https://files.pythonhosted.org/packages/26/45/2199549bf70828c88a14f876def4b2896662a69d3fd04b7c02c1cf92a17c/django_bootstrap_ui-0.1.0a5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f8717b8d066fab727b66e782752f492", "sha256": "7f944a073a5d88a5e63422e9f9f2a6c1271dcf2882dd32fb5636f3a832183f49" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1.0a5.tar.gz", "has_sig": false, "md5_digest": "1f8717b8d066fab727b66e782752f492", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3562, "upload_time": "2015-05-06T07:11:17", "url": "https://files.pythonhosted.org/packages/1d/7e/3c7938a449ade6560446f6c2e638135f6b30fe131501bcf39498f2db4bde/django-bootstrap-ui-0.1.0a5.tar.gz" } ], "0.1.0b1": [ { "comment_text": "", "digests": { "md5": "580bb86312875a78617e50c29ffa9acc", "sha256": "1811f59e8a523a6dce9363065857b1f2ad2048ac860ed48c199ec96665b6e42f" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "580bb86312875a78617e50c29ffa9acc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6317, "upload_time": "2015-06-19T21:20:21", "url": "https://files.pythonhosted.org/packages/d5/67/c3db2e21c3040c2956f010e85e87e733eea0c82b0a0f1462ddb79a5e5572/django_bootstrap_ui-0.1.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "91e6013c1f69e57adbbdd762b6c37826", "sha256": "19e2c3d2662c37130ff0945a061b53d623af08b414eef886b9232ab390f18ccd" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1.0b1.tar.gz", "has_sig": false, "md5_digest": "91e6013c1f69e57adbbdd762b6c37826", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4073, "upload_time": "2015-06-19T21:20:18", "url": "https://files.pythonhosted.org/packages/b1/07/744df8c22d7d20a70d943f82edcad32201e04285febd177bc8e1e9ce6a9f/django-bootstrap-ui-0.1.0b1.tar.gz" } ], "0.1.0b2": [ { "comment_text": "", "digests": { "md5": "db406a87b2bca7b977201c2c8b9f0f6b", "sha256": "0550da969e56148e482246607809973073ccdf838516e7c767ba47646901f4ed" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db406a87b2bca7b977201c2c8b9f0f6b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8704, "upload_time": "2015-06-25T23:00:53", "url": "https://files.pythonhosted.org/packages/90/30/12c4abb24fb24395f8211b5cf35d6937b3d0b8e52ce04250314e5a19e7a5/django_bootstrap_ui-0.1.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80c9816d5d1eb7dfb94690d82bd49be7", "sha256": "9552d4cd33bb27daaae597bd556f24151f21c2dd1cda0cb9eec5f04c25e06bc2" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1.0b2.tar.gz", "has_sig": false, "md5_digest": "80c9816d5d1eb7dfb94690d82bd49be7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6165, "upload_time": "2015-06-25T23:00:50", "url": "https://files.pythonhosted.org/packages/14/48/75a037eba2bf2bdb4a51a95b0e2eadea61c105cbc6ee87e3670367ba3066/django-bootstrap-ui-0.1.0b2.tar.gz" } ], "0.1.0rc1": [ { "comment_text": "", "digests": { "md5": "e891a975c34921c29ae60638817b3310", "sha256": "1ae4566afdd2c3f3f1929e57767db2c5adde4fef1b86249f114561b80a87beb9" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e891a975c34921c29ae60638817b3310", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9537, "upload_time": "2015-07-03T22:31:16", "url": "https://files.pythonhosted.org/packages/5d/9a/33552c6d16ef6dc445ba0ed2f0e33abc2d4cd1bb8510a675c8357fed9166/django_bootstrap_ui-0.1.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35d72d73364fb61ef53dfb79349c8cef", "sha256": "27463ccba8f12595ee18cba4c998929ebae34080b446a5c95fe8c25defab3c27" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1.0rc1.tar.gz", "has_sig": false, "md5_digest": "35d72d73364fb61ef53dfb79349c8cef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6542, "upload_time": "2015-07-03T22:31:13", "url": "https://files.pythonhosted.org/packages/8b/d5/247f96e8a04dacdb836b66379b0f72cd83ade7e4a66453c154b8c006b831/django-bootstrap-ui-0.1.0rc1.tar.gz" } ], "0.1.0rc2": [ { "comment_text": "", "digests": { "md5": "a9da9256088404e8b3b98ec9f98ea431", "sha256": "ef08f81643fd728eaa8aa6327017c06e4c63ef03fed5f40ea499c46533387885" }, "downloads": -1, "filename": "django_bootstrap_ui-0.1.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a9da9256088404e8b3b98ec9f98ea431", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9574, "upload_time": "2015-07-09T21:14:30", "url": "https://files.pythonhosted.org/packages/75/9d/d880fa585bb46384db7a50d0aef7d32684322a9381480eb6b7fce5830992/django_bootstrap_ui-0.1.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc76dfd888bb89c13a34c6696d8f0a29", "sha256": "8f4c6b1afa410ae970fa66ca7a87458eaba8dd1b5f4527a6cde6e0231206318f" }, "downloads": -1, "filename": "django-bootstrap-ui-0.1.0rc2.tar.gz", "has_sig": false, "md5_digest": "bc76dfd888bb89c13a34c6696d8f0a29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6542, "upload_time": "2015-07-09T21:14:27", "url": "https://files.pythonhosted.org/packages/33/fc/6dc6e876173c95e0ad85ea9f53fd03224deaa9c80d358ef1fd9d94282410/django-bootstrap-ui-0.1.0rc2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "5a419ca2ea7f6ad44a07264abe66aac8", "sha256": "18556ea1c40c84198d37ff798a0434db204b09ea1076d6cded05a0335ba52021" }, "downloads": -1, "filename": "django_bootstrap_ui-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a419ca2ea7f6ad44a07264abe66aac8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11322, "upload_time": "2015-12-13T11:55:11", "url": "https://files.pythonhosted.org/packages/b4/36/e8ba46e5903f9243832d67c11f136e641a07d733f41d7544f17a6f8baf34/django_bootstrap_ui-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f32f51a66dd433711256d00b45b36396", "sha256": "eb68e5b8df198c28afe61d47987cdc31ae52510383d1aed20c0c43d678d8d75e" }, "downloads": -1, "filename": "django-bootstrap-ui-0.2.0.tar.gz", "has_sig": false, "md5_digest": "f32f51a66dd433711256d00b45b36396", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7739, "upload_time": "2015-12-13T11:55:16", "url": "https://files.pythonhosted.org/packages/aa/aa/00c9b2d9a2923b54dd7f09e65b47627e78ef86b2d7e55dbfeec21b730ff4/django-bootstrap-ui-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "edb04900b5ec779e85d305cf4d10c845", "sha256": "ff216931a8934a5ddab15834e7c29316b886f4adcc60ec894f88154095069fa4" }, "downloads": -1, "filename": "django_bootstrap_ui-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "edb04900b5ec779e85d305cf4d10c845", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11330, "upload_time": "2016-11-05T14:55:41", "url": "https://files.pythonhosted.org/packages/a5/7a/03a37507e5c921ef8e4a43479191a28fcf86fd9c2f80ca4eb0b0f554894a/django_bootstrap_ui-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9f79da13dccbe5bd8cc2a3177010fc0", "sha256": "41201fbc817d33939a35951e03a5d20fb413e97571c541bdbbee17fc2aa6b812" }, "downloads": -1, "filename": "django-bootstrap-ui-0.3.0.tar.gz", "has_sig": false, "md5_digest": "f9f79da13dccbe5bd8cc2a3177010fc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7736, "upload_time": "2016-11-05T14:55:43", "url": "https://files.pythonhosted.org/packages/0f/30/9d3a05ac245fc15ec23e7b67020352d3e5b56c295a70bd9191b25e0417dd/django-bootstrap-ui-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "2bc06602d261f925cef93727214e4f00", "sha256": "48ee8355ce4815d88a76c058a1a69c7298637e15d2e24cc2903143da3768f730" }, "downloads": -1, "filename": "django_bootstrap_ui-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2bc06602d261f925cef93727214e4f00", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11811, "upload_time": "2016-11-19T21:19:40", "url": "https://files.pythonhosted.org/packages/26/0d/cfe89f1b86f5f7db5ceddfea021fb8ace47e74fcc251c302a35c660e7424/django_bootstrap_ui-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "095ed730470ff40f79760d644ac20318", "sha256": "51b60e8d2c30bd312e148968c15ba9d3d731645bbca1f266e65710e7bdcaac1c" }, "downloads": -1, "filename": "django-bootstrap-ui-0.4.0.tar.gz", "has_sig": false, "md5_digest": "095ed730470ff40f79760d644ac20318", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8071, "upload_time": "2016-11-19T21:19:42", "url": "https://files.pythonhosted.org/packages/3c/2b/3dbc21fa6b276fdd23490c444f9b907fdbbe946ce747ea3525167c59f73e/django-bootstrap-ui-0.4.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "8430fc212320a85ee9063e4d8cbe1e61", "sha256": "b7c65e8b78f2aefc4c3869ca3b3b982227af935cb59100fb321a8f0aca35ee2f" }, "downloads": -1, "filename": "django_bootstrap_ui-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8430fc212320a85ee9063e4d8cbe1e61", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11886, "upload_time": "2017-10-01T14:36:26", "url": "https://files.pythonhosted.org/packages/e9/97/3421a72b12d8430dc691a651c87368b29567089f7a7474e874623bb01dd0/django_bootstrap_ui-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6ef20dd0a46041798b5691690250166", "sha256": "7340e3962df9aae5a43c8f5145eb0fa779d373ad11ae57b2d8e90054b3634929" }, "downloads": -1, "filename": "django-bootstrap-ui-0.5.1.tar.gz", "has_sig": false, "md5_digest": "e6ef20dd0a46041798b5691690250166", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8118, "upload_time": "2017-10-01T14:36:27", "url": "https://files.pythonhosted.org/packages/36/e2/003580d6addfedaf52e4d87b14734ed501905746b148331aaa1113b1b6f6/django-bootstrap-ui-0.5.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8430fc212320a85ee9063e4d8cbe1e61", "sha256": "b7c65e8b78f2aefc4c3869ca3b3b982227af935cb59100fb321a8f0aca35ee2f" }, "downloads": -1, "filename": "django_bootstrap_ui-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8430fc212320a85ee9063e4d8cbe1e61", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11886, "upload_time": "2017-10-01T14:36:26", "url": "https://files.pythonhosted.org/packages/e9/97/3421a72b12d8430dc691a651c87368b29567089f7a7474e874623bb01dd0/django_bootstrap_ui-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6ef20dd0a46041798b5691690250166", "sha256": "7340e3962df9aae5a43c8f5145eb0fa779d373ad11ae57b2d8e90054b3634929" }, "downloads": -1, "filename": "django-bootstrap-ui-0.5.1.tar.gz", "has_sig": false, "md5_digest": "e6ef20dd0a46041798b5691690250166", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8118, "upload_time": "2017-10-01T14:36:27", "url": "https://files.pythonhosted.org/packages/36/e2/003580d6addfedaf52e4d87b14734ed501905746b148331aaa1113b1b6f6/django-bootstrap-ui-0.5.1.tar.gz" } ] }