{"id":24837151,"url":"https://github.com/venkatnvs/nvs-bootstrap-forms","last_synced_at":"2026-04-19T13:32:09.300Z","repository":{"id":212536252,"uuid":"731733832","full_name":"Venkatnvs/nvs-bootstrap-forms","owner":"Venkatnvs","description":"A Django app that provides enhanced form rendering with Bootstrap styles","archived":false,"fork":false,"pushed_at":"2023-12-14T19:05:29.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T04:13:43.191Z","etag":null,"topics":["bootstrap","django","django-package","python-package"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/nvs-bootstrap-forms/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Venkatnvs.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-12-14T18:48:46.000Z","updated_at":"2023-12-14T19:21:31.000Z","dependencies_parsed_at":"2023-12-14T20:48:47.592Z","dependency_job_id":null,"html_url":"https://github.com/Venkatnvs/nvs-bootstrap-forms","commit_stats":null,"previous_names":["venkatnvs/nvs-bootstrap-forms"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Venkatnvs/nvs-bootstrap-forms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Venkatnvs%2Fnvs-bootstrap-forms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Venkatnvs%2Fnvs-bootstrap-forms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Venkatnvs%2Fnvs-bootstrap-forms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Venkatnvs%2Fnvs-bootstrap-forms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Venkatnvs","download_url":"https://codeload.github.com/Venkatnvs/nvs-bootstrap-forms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Venkatnvs%2Fnvs-bootstrap-forms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32009111,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["bootstrap","django","django-package","python-package"],"created_at":"2025-01-31T05:53:28.381Z","updated_at":"2026-04-19T13:32:09.282Z","avatar_url":"https://github.com/Venkatnvs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"=============================\nDjango Bootstrap Forms (NVS)\n=============================\n\n|Latest Version|  |Downloads|  |License|\n\nDjango Bootstrap Forms is a Django app that provides enhanced form rendering with Bootstrap styles.\n\nInstallation\n------------\n\n1. Install the package using pip:\n\n    .. code-block:: bash\n    \n       pip install nvs-bootstrap-forms\n\n2. Add 'bootstrap_forms' to your `INSTALLED_APPS` in the Django settings:\n\n    .. code-block:: python\n    \n       INSTALLED_APPS = [\n           # ...\n           'bootstrap_forms',\n           # ...\n       ]\n       \n3. Include Bootstraps css and js links in your html:\n\n    .. code-block:: html\n    \n        \u003c!doctype html\u003e\n        \u003chtml lang=\"en\"\u003e\n          \u003chead\u003e\n            \u003c!-- Your headers goes here --\u003e\n            \u003clink href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css\" rel=\"stylesheet\"\u003e\n          \u003c/head\u003e\n          \u003cbody\u003e\n            \u003c!-- Your content goes here --\u003e\n            \u003cscript src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js\"\u003e\u003c/script\u003e\n          \u003c/body\u003e\n        \u003c/html\u003e\n\n\nUsage\n-----\n\n1. **Load Bootstrap Forms in your template:**\n\n   .. code-block:: html+django\n\n      {% load bootstrap_forms_tags %}\n\n2. **Use the `bootstrap_form` template tag to render your form:**\n\n   .. code-block:: html+django\n\n      \u003cform method=\"post\"\u003e\n        {% csrf_token %}\n        {% bootstrap_form form %}\n        \u003cbutton type=\"submit\"\u003eSubmit\u003c/button\u003e\n      \u003c/form\u003e\n\n   This will render the form with Bootstrap styles.\n\n3. **Customization:**\n\n   - You can customize the rendering of individual fields by using the `field_order` and other attributes in your form fields.\n\n   - For advanced customization, you can extend the provided `BootstrapFormRendererNode` class in the `bootstrap_forms.templatetags.bootstrap_forms_tags` module.\n\nContributing\n------------\n\nFeel free to contribute by opening issues or submitting pull requests. Please read the `Contributing Guidelines \u003cCONTRIBUTING.md\u003e`_ for more details.\n\nLicense\n-------\n\nThis project is licensed under the MIT License - see the `LICENSE \u003cLICENSE.md\u003e`_ file for details.\n\n.. |Latest Version| image:: https://img.shields.io/pypi/v/django-bootstrap-forms.svg\n   :target: https://pypi.python.org/pypi/django-bootstrap-forms\n   :alt: Latest Version\n\n.. |Downloads| image:: https://img.shields.io/pypi/dm/django-bootstrap-forms.svg\n   :target: https://pypi.python.org/pypi/django-bootstrap-forms\n   :alt: Downloads\n\n.. |License| image:: https://img.shields.io/badge/license-MIT-blue.svg\n   :alt: License\n   :target: https://opensource.org/licenses/MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvenkatnvs%2Fnvs-bootstrap-forms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvenkatnvs%2Fnvs-bootstrap-forms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvenkatnvs%2Fnvs-bootstrap-forms/lists"}