All Projects → zostera → Django Bootstrap4

zostera / Django Bootstrap4

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

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Bootstrap4

Ecommerce
We're going to take you step-by-step to build a modern, fully open-source, eCommerce web application using Python, Django, Bootstrap, Javascript, and more.
Stars: ✭ 980 (+11.74%)
Mutual labels:  django, bootstrap4
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 (-86.77%)
Mutual labels:  django, bootstrap4
Django React Boilerplate
Django, React, Bootstrap 4 with Python 3 and webpack project boilerplate
Stars: ✭ 1,164 (+32.73%)
Mutual labels:  django, bootstrap4
E Commerce 2 django
Guest register, user register, user login, user logout, account home page, product view history, change password, reset password, change name, send activation email when register, resend activation email, add shipping address, add billing address, add nickname to the addresses, edit shipping address, edit billing address, view list of your addresses, reuse shipping addresses when order products, reuse billing addresses when ordeer products, show sales analytics if staff or admin only using -chart.js-, get analytics data with Ajax, receive marketing email, change if user will receive marketing email or not by admin, send contact message with Ajax, products list, product detail, download product detail as a PDF file, download digital product files -if the user purchased that digital product only-, orders list, list of digital products files, order detail, download order detail as a PDF file, verify order ownership with Ajax -to secure order detail page-, show cart products, add or remove product from cart, checkout page, thanks page when order placed successfully, add or reuse payment method, add or reuse payment method with Ajax, search products by title, search products by description, search products by price, search products by tag title, write tags for products -by admin only-, auto fill contact email, full name if user logged in.
Stars: ✭ 20 (-97.72%)
Mutual labels:  django, bootstrap4
Django Bootstrap Modal Forms
A Django plugin for creating AJAX driven forms in Bootstrap modal.
Stars: ✭ 244 (-72.18%)
Mutual labels:  django, bootstrap4
Django Poll App
Django poll app is a full featured polling app. You have to register in this app to show the polls and to vote. If you already voted you can not vote again. Only the owner of a poll can add poll , edit poll, update poll, delete poll , add choice, update choice, delete choice and end a poll. If a poll is ended it can not be voted. Ended poll only shows user the final result of the poll. There is a search option for polls. Also user can filter polls by name, publish date, and by number of voted. Pagination will work even after applying filter.
Stars: ✭ 78 (-91.11%)
Mutual labels:  django, bootstrap4
Banking System
A banking System Created Using Django Python Web Framework
Stars: ✭ 105 (-88.03%)
Mutual labels:  django, bootstrap4
Episodes
Self Hosted TV show Episode tracker and recommender built using django, bootstrap4.
Stars: ✭ 160 (-81.76%)
Mutual labels:  django, bootstrap4
Csdnbot
CSDN 资源下载器
Stars: ✭ 209 (-76.17%)
Mutual labels:  django, bootstrap4
Django blog
A blog application made with Django and bootstrap
Stars: ✭ 172 (-80.39%)
Mutual labels:  django, bootstrap4
Coderedcms
A content management system for marketing websites based on Django and Wagtail.
Stars: ✭ 386 (-55.99%)
Mutual labels:  django, bootstrap4
Estoque
Controle de estoque
Stars: ✭ 292 (-66.7%)
Mutual labels:  django, bootstrap4
Django Photoblog
Photographer portfolio website powered by Django Framework. Features photo gallery with infinite scrolling, tagging, thumbnail generation and CMS for creating pages. Configured for Heroku and S3.
Stars: ✭ 19 (-97.83%)
Mutual labels:  django, bootstrap4
Adfs managers
This is site (web-app) to manage teams and statistic for ADFS
Stars: ✭ 10 (-98.86%)
Mutual labels:  django
Crawl
selenium异步爬取网页图片
Stars: ✭ 13 (-98.52%)
Mutual labels:  django
Startbootstrap New Age
A web app landing page theme created by Start Bootstrap
Stars: ✭ 855 (-2.51%)
Mutual labels:  bootstrap4
Texcavator
Text mining on the Royal Library newspaper corpus
Stars: ✭ 9 (-98.97%)
Mutual labels:  django
Docker Taiga
Docker container for Taiga https://taiga.io
Stars: ✭ 14 (-98.4%)
Mutual labels:  django
Palewi.re
The once and future blog
Stars: ✭ 12 (-98.63%)
Mutual labels:  django
Flask Scaffold
Prototype Database driven Web apps in Angular 6, Bootstrap 4 and REST API's with Flask (Python 3 framework)
Stars: ✭ 853 (-2.74%)
Mutual labels:  bootstrap4

django-bootstrap 4

CI Coverage Status Latest PyPI version Any color you like

Bootstrap 4 integration for Django.

Goal

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

Requirements

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

Documentation

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

Installation

  1. Install using pip:

    pip install django-bootstrap4
    

    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 = (
        # ...
        "bootstrap4",
        # ...
    )
    
  3. In your templates, load the bootstrap4 library and use the bootstrap_* tags:

Example template

{% 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">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-bootstrap4/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].