{"id":13473055,"url":"https://github.com/zostera/django-bootstrap3","last_synced_at":"2025-05-07T11:52:52.240Z","repository":{"id":37095356,"uuid":"12082924","full_name":"zostera/django-bootstrap3","owner":"zostera","description":"Bootstrap 3 integration with Django.","archived":false,"fork":false,"pushed_at":"2025-04-30T05:25:03.000Z","size":1371,"stargazers_count":2336,"open_issues_count":1,"forks_count":681,"subscribers_count":102,"default_branch":"main","last_synced_at":"2025-04-30T05:29:08.166Z","etag":null,"topics":["bootstrap3","django","python"],"latest_commit_sha":null,"homepage":"http://django-bootstrap3.readthedocs.org/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zostera.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-08-13T13:48:04.000Z","updated_at":"2025-04-30T05:20:25.000Z","dependencies_parsed_at":"2022-06-24T13:29:40.414Z","dependency_job_id":"2a4e4052-1818-4f1f-acfd-1ba81f2940f8","html_url":"https://github.com/zostera/django-bootstrap3","commit_stats":{"total_commits":940,"total_committers":102,"mean_commits":9.215686274509803,"dds":0.624468085106383,"last_synced_commit":"fc6994052bc4e80b9681f795ba23366aad102411"},"previous_names":["dyve/django-bootstrap3"],"tags_count":108,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zostera%2Fdjango-bootstrap3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zostera%2Fdjango-bootstrap3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zostera%2Fdjango-bootstrap3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zostera%2Fdjango-bootstrap3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zostera","download_url":"https://codeload.github.com/zostera/django-bootstrap3/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251691728,"owners_count":21628379,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap3","django","python"],"created_at":"2024-07-31T16:01:00.303Z","updated_at":"2025-05-07T11:52:52.218Z","avatar_url":"https://github.com/zostera.png","language":"Python","readme":"# django-bootstrap3\n\n[![CI](https://github.com/zostera/django-bootstrap3/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/zostera/django-bootstrap3/actions?workflow=test)\n[![Coverage Status](https://coveralls.io/repos/github/zostera/django-bootstrap3/badge.svg?branch=main)](https://coveralls.io/github/zostera/django-bootstrap3?branch=main)\n[![Latest PyPI version](https://img.shields.io/pypi/v/django-bootstrap3.svg)](https://pypi.python.org/pypi/django-bootstrap3)\n\nBootstrap 3 for Django.\n\n## Goal\n\nThe goal of this project is to seamlessly blend Django and Bootstrap 3.\n\n## Roadmap\n\nBootstrap 3 has been superseded by Bootstrap 4, which has since been superseded by Bootstrap 5. As a result, this package is now in maintenance mode and will only receive bug fixes and security updates. No new features or enhancements will be added. We recommend that new projects use Bootstrap 5 and encourage existing projects to consider migrating when feasible.\n\nFor Bootstrap 4, please refer to our dedicated package: [django-bootstrap4](https://github.com/zostera/django-bootstrap4).\n\nFor Bootstrap 5, please refer to our dedicated package: [django-bootstrap5](https://github.com/zostera/django-bootstrap5).\n\nFor icons, we recommend our dedicated package: [django-icons](https://github.com/zostera/django-icons).\n\n## Requirements\n\nThis package requires a combination of Python and Django that is currently supported.\n\nSee \"Supported Versions\" on https://www.djangoproject.com/download/.\n\n## Documentation\n\nThe full documentation is at https://django-bootstrap3.readthedocs.io/\n\n## Installation\n\n1. Install using pip:\n\n    ```shell script\n    pip install django-bootstrap3\n    ```\n\n   Alternatively, you can install download or clone this repo and call ``pip install -e .``.\n\n2. Add to `INSTALLED_APPS` in your `settings.py`:\n\n   ```python\n   INSTALLED_APPS = (\n       # ...\n       \"bootstrap3\",\n       # ...\n   )\n   ````\n\n3. In your templates, load the `bootstrap3` library and use the `bootstrap_*` tags:\n\n## Example template\n\n```djangotemplate\n{% load bootstrap3 %}\n\n{# Display a form #}\n\n\u003cform action=\"/url/to/submit/\" method=\"post\" class=\"form\"\u003e\n    {% csrf_token %}\n    {% bootstrap_form form %}\n    {% buttons %}\n        \u003cbutton type=\"submit\" class=\"btn btn-primary\"\u003eSubmit\u003c/button\u003e\n    {% endbuttons %}\n\u003c/form\u003e\n```\n\nExample app\n-----------\n\nAn example app is provided in `example`. You can run it with `make example`.\n\n\nBugs and suggestions\n--------------------\n\nIf you have found a bug or if you have a request for additional functionality, please use the issue tracker on GitHub.\n\nhttps://github.com/zostera/django-bootstrap3/issues\n\n\nLicense\n-------\n\nYou can use this under BSD-3-Clause. See [LICENSE](LICENSE) file for details.\n\n\nAuthor\n------\n\nDeveloped and maintained by [Zostera](https://zostera.nl).\n\nOriginal author: [Dylan Verheul](https://github.com/dyve).\n\nThanks to everybody that has contributed pull requests, ideas, issues, comments and kind words.\n\nPlease see [AUTHORS](AUTHORS) for a list of contributors.\n","funding_links":[],"categories":["表单","Python","Django Utilities"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzostera%2Fdjango-bootstrap3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzostera%2Fdjango-bootstrap3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzostera%2Fdjango-bootstrap3/lists"}