Skip to main content

A Bootstrap theme for Django Admin

Project description

PyPI version

A Django admin theme using Twitter Bootstrap. It doesn’t need any kind of modification on your side, just add it to the installed apps.

Requirements

  • Django >=1.4.x.

Installation

  1. Download it from PyPi with pip install django-admin-bootstrapped

  2. Add 'django_admin_bootstrapped' into the INSTALLED_APPS list before 'django.contrib.admin'

  3. Have fun!

Switch to Bootstrap3

Do the previous steps, then add 'django_admin_bootstrapped.bootstrap3' into the INSTALLED_APPS list before 'django_admin_bootstrapped'.

Goodies

Translate/change an application name with a template

With the default admin you can’t change the application name, but django-admin-bootstrapped let you do it in a really easy way. Just create a file named admin_app_name.html into the application’s template folder. Eg: myapp/templates/admin_app_name.html or project/templates/myapp/admin_app_name.html. You can also change the default Django Administration title, just add a admin_title.html file into your project/templates/admin/ folder.

Add custom html to the change form of any model with a template

You can inject custom html on top of any change form creating a template named admin_model_MODELNAME_change_form.html into the application’s template folder. Eg: myapp/templates/myapp/admin_model_mymodelname_change_form.html or project/templates/myapp/admin_model_mymodelname_change_form.html.

Inline sortable

You can add drag&drop sorting capability to any inline with a couple of changes to your code.

First, add a position field in your model (and sort your model accordingly), for example:

class TestSortable(models.Model):
    that = models.ForeignKey(TestMe)
    position = models.PositiveSmallIntegerField("Position")
    test_char = models.CharField(max_length=5)

    class Meta:
        ordering = ('position', )

Then in your admin.py create a class to handle the inline using the django_admin_bootstrapped.admin.models.SortableInline mixin, like this:

from django_admin_bootstrapped.admin.models import SortableInline
from models import TestSortable

class TestSortable(admin.StackedInline, SortableInline):
    model = TestSortable
    extra = 0

You can now use the inline as usual. The result will look like this:

This feature was brought to you by Kyle Bock. Thank you Kyle!

XHTML Compatible

Compatible with both html and xhtml. To enable xhtml for your django app add the following to your settings.py: DEFAULT_CONTENT_TYPE = ‘application/xhtml+xml’

Generic lookups in admin

All that needs to be done is change the admin widget with either formfield_overrides like this:

from django_admin_bootstrapped.widgets import GenericContentTypeSelect

class SomeModelAdmin(admin.ModelAdmin):
    formfield_overrides = {
        models.ForeignKey: {'widget': GenericContentTypeSelect},
    }

Or if you want to be more specific:

from django_admin_bootstrapped.widgets import GenericContentTypeSelect

class SomeModelAdmin(admin.ModelAdmin):
    def formfield_for_dbfield(self, db_field, **kwargs):
        if db_field.name == 'content_type':
            kwargs['widget'] = GenericContentTypeSelect
        return super(SomeModelAdmin, self).formfield_for_dbfield(db_field, **kwargs)

If you decide on using formfield_overrides you should be aware of its limitations with relation fields.

This feature (and many more) was brought to you by Jacob Magnusson. Thank you Jacob!

Screenshots

Homepage

List view with filters in dropdown

Change form view

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-admin-bootstrapped-1.6.6.tar.gz (370.7 kB view details)

Uploaded Source

File details

Details for the file django-admin-bootstrapped-1.6.6.tar.gz.

File metadata

File hashes

Hashes for django-admin-bootstrapped-1.6.6.tar.gz
Algorithm Hash digest
SHA256 b5fe0045dda47454ec07706ccaf9a8f754cd3374a05c403be4a99405393e4d61
MD5 9ef29f7c020bf29313c4fe01a8425440
BLAKE2b-256 efd2f80e10a3374248d113bd1056e4b97b06158376fc194ba7461e658eba0969

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page