Write Django as usual, and let django-bootstrap4
make template output into Bootstrap 4 code.
- Python 2.7, 3.2, 3.3, 3.4, 3.5 or 3.6
- Django >= 1.8
- Download or clone this repo.
- Copy the
bootstrap4
folder to the main file structure of your project.
Add to INSTALLED_APPS in your
settings.py
:'bootstrap4',
In your templates, load the
bootstrap4
library and use thebootstrap_*
tags:
This app will soon require Django 1.8+, python 2.7+. Thanks for understanding.
{% load bootstrap4 %} {# Display a form #} <form action="/url/to/submit/" method="post" class="form"> {% csrf_token %} {% bootstrap_form form %} {% buttons %} <button type="submit" class="btn btn-primary"> {% bootstrap_icon "star" %} Submit </button> {% endbuttons %} </form>
If you have found a bug or if you have a request for additional functionality, please use the issue tracker on GitHub.
https://github.com/GabrielUlici/django-bootstrap4/issues
You can use this under Apache 2.0. See LICENSE file for details.
Original author : Dylan Verheul.
Development lead: Gabriel Ulici.
Thanks to everybody that has contributed pull requests, ideas, issues, comments and kind words.
Please see AUTHORS.rst for a list of contributors.