1Metadata-Version: 2.1
2Name: django-bootstrap3
3Version: 15.0.0
4Summary: Bootstrap 3 support for Django projects
5Home-page: https://github.com/zostera/django-bootstrap3
6Author: Dylan Verheul
7Author-email: dylan@dyve.net
8License: BSD-3-Clause
9Description: # django-bootstrap3
10
11        [![Build](https://travis-ci.org/zostera/django-bootstrap3.svg?branch=main)](https://travis-ci.org/zostera/django-bootstrap3)
12        [![Coverage Status](https://coveralls.io/repos/github/zostera/django-bootstrap3/badge.svg?branch=main)](https://coveralls.io/github/zostera/django-bootstrap3?branch=main)
13        [![Latest PyPI version](https://img.shields.io/pypi/v/django-bootstrap3.svg)](https://pypi.python.org/pypi/django-bootstrap3)
14        [![Any color you like](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
15
16        Bootstrap 3 integration for Django.
17
18        ## Goal
19
20        The goal of this project is to seamlessly blend Django and Bootstrap 3.
21
22        - Want to use Bootstrap 4 in Django? See https://github.com/zostera/django-bootstrap4.
23        - Want to use Bootstrap 5 in Django? See https://github.com/zostera/django-bootstrap5.
24
25        ## Requirements
26
27        Python 3.6 or newer with Django >= 2.2 or newer.
28
29        ## Documentation
30
31        The full documentation is at https://django-bootstrap3.readthedocs.io/
32
33        ## Installation
34
35        1. Install using pip:
36
37            ```shell script
38            pip install django-bootstrap3
39            ```
40
41           Alternatively, you can install download or clone this repo and call ``pip install -e .``.
42
43        2. Add to `INSTALLED_APPS` in your `settings.py`:
44
45           ```python
46           INSTALLED_APPS = (
47               # ...
48               "bootstrap3",
49               # ...
50           )
51           ````
52
53        3. In your templates, load the `bootstrap3` library and use the `bootstrap_*` tags:
54
55        ## Example template
56
57        ```djangotemplate
58        {% load bootstrap3 %}
59
60        {# Display a form #}
61
62        <form action="/url/to/submit/" method="post" class="form">
63            {% csrf_token %}
64            {% bootstrap_form form %}
65            {% buttons %}
66                <button type="submit" class="btn btn-primary">Submit</button>
67            {% endbuttons %}
68        </form>
69        ```
70
71        Demo
72        ----
73
74        A demo app is provided in `demo`. You can run it from your virtualenv with `python manage.py runserver`.
75
76
77        Bugs and suggestions
78        --------------------
79
80        If you have found a bug or if you have a request for additional functionality, please use the issue tracker on GitHub.
81
82        https://github.com/zostera/django-bootstrap3/issues
83
84
85        License
86        -------
87
88        You can use this under BSD-3-Clause. See [LICENSE](LICENSE) file for details.
89
90
91        Author
92        ------
93
94        Developed and maintained by [Zostera](https://zostera.nl).
95
96        Original author: [Dylan Verheul](https://github.com/dyve).
97
98        Thanks to everybody that has contributed pull requests, ideas, issues, comments and kind words.
99
100        Please see [AUTHORS](AUTHORS) for a list of contributors.
101
102Platform: UNKNOWN
103Classifier: Development Status :: 5 - Production/Stable
104Classifier: Environment :: Web Environment
105Classifier: Framework :: Django
106Classifier: Framework :: Django :: 2.2
107Classifier: Framework :: Django :: 3.1
108Classifier: Framework :: Django :: 3.2
109Classifier: Intended Audience :: Developers
110Classifier: License :: OSI Approved :: BSD License
111Classifier: Operating System :: OS Independent
112Classifier: Programming Language :: Python :: 3
113Classifier: Programming Language :: Python :: 3.6
114Classifier: Programming Language :: Python :: 3.7
115Classifier: Programming Language :: Python :: 3.8
116Classifier: Programming Language :: Python :: 3.9
117Classifier: Topic :: Software Development :: Libraries
118Classifier: Topic :: Utilities
119Requires-Python: >=3.6
120Description-Content-Type: text/markdown
121