All Projects → zostera → Django Bootstrap3

zostera / Django Bootstrap3

Licence: bsd-3-clause
Bootstrap 3 integration with Django.

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
Makefile
30231 projects

Projects that are alternatives of or similar to Django Bootstrap3

Django Jinja Knockout
Django datatables and widgets, both AJAX and traditional. Display-only ModelForms. ModelForms / inline formsets with AJAX submit and validation. Works with Django templates.
Stars: ✭ 116 (-94.89%)
Mutual labels:  django, bootstrap3
Flight Ticket Booksystem
大三下数据库课设 - 机票预订系统 - Django
Stars: ✭ 55 (-97.58%)
Mutual labels:  django, bootstrap3
Django Bootstrap Modal Forms
A Django plugin for creating AJAX driven forms in Bootstrap modal.
Stars: ✭ 244 (-89.26%)
Mutual labels:  django, bootstrap3
Django Crudbuilder
Generic CRUD implementation in Django
Stars: ✭ 142 (-93.75%)
Mutual labels:  django, bootstrap3
Django Eraserhead
💂🏻 Django package that provides hints to optimize database usage by deferring unused fields (and more)
Stars: ✭ 194 (-91.46%)
Mutual labels:  django
Django Tutorials
Source code for my free YouTube series on the Django web framework for Python.
Stars: ✭ 188 (-91.72%)
Mutual labels:  django
Django Mock Queries
A library for mocking django queryset functions in memory for testing
Stars: ✭ 187 (-91.77%)
Mutual labels:  django
Jblog
🔱一个简洁漂亮的java blog 👉基于Spring /MVC+ Hibernate + MySQL + Bootstrap + freemarker. 实现 🌈
Stars: ✭ 187 (-91.77%)
Mutual labels:  bootstrap3
Repoll
Redis管理平台Repoll,现已开源,基于redis3.x,支持单机、哨兵以及集群模式
Stars: ✭ 196 (-91.37%)
Mutual labels:  django
Gentelella Rtl
Free RTL Bootstrap 3 Admin Template
Stars: ✭ 194 (-91.46%)
Mutual labels:  bootstrap3
Django Environ
Django-environ allows you to utilize 12factor inspired environment variables to configure your Django application.
Stars: ✭ 2,425 (+6.78%)
Mutual labels:  django
Django Test Migrations
Test django schema and data migrations, including migrations' order and best practices.
Stars: ✭ 188 (-91.72%)
Mutual labels:  django
Django Recommends
A django app that builds item-based suggestions for users.
Stars: ✭ 194 (-91.46%)
Mutual labels:  django
Flango
A Django template for using Flask for the frontend, Django for the backend.
Stars: ✭ 188 (-91.72%)
Mutual labels:  django
Django Rest Auth
This app makes it extremely easy to build Django powered SPA's (Single Page App) or Mobile apps exposing all registration and authentication related functionality as CBV's (Class Base View) and REST (JSON)
Stars: ✭ 2,289 (+0.79%)
Mutual labels:  django
Dcrm
Darwin Cydia Repo Manager - v4 redesigned in Django.
Stars: ✭ 188 (-91.72%)
Mutual labels:  django
Movieweb python
🎬 Django 搭建的一个视频网站
Stars: ✭ 193 (-91.5%)
Mutual labels:  django
Rengorum
🚀 Forum app built in React, Redux & Django
Stars: ✭ 194 (-91.46%)
Mutual labels:  django
Djangorestframework Stubs
PEP-484 stubs for django-rest-framework
Stars: ✭ 191 (-91.59%)
Mutual labels:  django
Docker Django Webpack Skeleton
Django Skeleton W/ Docker Dev & Production W/ Webpack 2 W/ BabelJS W/ Sass W/ PostgreSQL
Stars: ✭ 191 (-91.59%)
Mutual labels:  django

django-bootstrap3

CI Coverage Status Latest PyPI version Any color you like

Bootstrap 3 integration for Django.

Goal

The goal of this project is to seamlessly blend Django and Bootstrap 3.

Requirements

Python 3.6 or newer with Django >= 2.2 or newer.

Documentation

The full documentation is at https://django-bootstrap3.readthedocs.io/

Installation

  1. Install using pip:

    pip install django-bootstrap3

    Alternatively, you can install download or clone this repo and call pip install -e ..

  2. Add to INSTALLED_APPS in your settings.py:

    INSTALLED_APPS = (
        # ...
        "bootstrap3",
        # ...
    )
  3. In your templates, load the bootstrap3 library and use the bootstrap_* tags:

Example template

{% load bootstrap3 %}

{# 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">Submit</button>
    {% endbuttons %}
</form>

Demo

A demo app is provided in demo. You can run it from your virtualenv with python manage.py runserver.

Bugs and suggestions

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/zostera/django-bootstrap3/issues

License

You can use this under BSD-3-Clause. See LICENSE file for details.

Author

Developed and maintained by Zostera.

Original author: Dylan Verheul.

Thanks to everybody that has contributed pull requests, ideas, issues, comments and kind words.

Please see AUTHORS for a list of contributors.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].