Metadata-Version: 2.1
Name: crispy-bootstrap3
Version: 2024.1
Summary: Bootstrap3 template pack for django-crispy-forms
Author: David Smith
License: MIT
Project-URL: Homepage, https://github.com/django-crispy-forms/crispy-bootstrap3
Project-URL: Issues, https://github.com/django-crispy-forms/crispy-bootstrap3/issues
Project-URL: CI, https://github.com/django-crispy-forms/crispy-bootstrap3/actions
Project-URL: Changelog, https://github.com/django-crispy-forms/crispy-bootstrap3/releases
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django-crispy-forms>=1.14.0
Requires-Dist: django>=3.2

# crispy-bootstrap3

[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/django-crispy-forms/crispy-bootstrap3/blob/main/LICENSE)

Bootstrap3 template pack for django-crispy-forms. This template pack was 
included with the core django-crispy-forms package until version 2.0.

## Installation

Install this plugin using `pip`:

```bash
    $ pip install crispy-bootstrap3
```

## Usage

You will need to update your project's settings file to add `crispy_forms`
and `crispy_bootstrap3` to your projects `INSTALLED_APPS`. Also set
`bootstrap3` as and allowed template pack and as the default template pack
for your project:

```python
    INSTALLED_APPS = (
        ...
        "crispy_forms",
        "crispy_bootstrap3",
        ...
    )

    CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap3"

    CRISPY_TEMPLATE_PACK = "bootstrap3"
```
