Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

douglasmiranda/django-admin-bootstrap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

551cdaf · Apr 19, 2015
Apr 19, 2015
Nov 17, 2014
Jul 4, 2014
Feb 18, 2015
Apr 19, 2015
Jun 8, 2013
Nov 7, 2013
Jan 30, 2013
Nov 17, 2014
Apr 19, 2015
Apr 19, 2015
Apr 19, 2015

Repository files navigation

Responsive Theme for Django Admin (Django 1.7+)

Downloads

Ingredients

New design, templates from Django 1.7+, Bootstrap 3 and Coffee.

Screenshots

See Screenshots

More screenshots

INSTALL

from pypi (recommended)

$ pip install bootstrap-admin

from github master branch

$ pip install git+https://github.com/django-admin-bootstrap/django-admin-bootstrap

or clone the master branch in your machine

$ git clone https://github.com/django-admin-bootstrap/django-admin-bootstrap

And don't forget to add bootstrap_admin in INSTALLED_APPS before the django.contrib.admin.

Example:

INSTALLED_APPS = (
    # ...
    'bootstrap_admin', # always before django.contrib.admin
    'django.contrib.admin',
    # ...
)

# For Sidebar Menu in Django 1.7 only (List of apps and models) (RECOMMENDED)
from django.conf import global_settings
TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
    'django.core.context_processors.request',
)
BOOTSTRAP_ADMIN_SIDEBAR_MENU = True

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request =]

See the full list of contributors.

Open an issue if you find a bug or want something more.

TODO

  • Docs
  • Improve Sidebar menu

If you want to install the old version, just install with pip. (See the old README)