Skip to main content

Disable dark mode in Django admin user interface in Django 3.2.x.

Project description

Disable or enable dark mode user interface in Django admin panel (Django==3.2).

Installation

For install this app run in terminal:

pip install django-non-dark-admin

Configuration for all users

Add ‘’django_non_dark_admin’’ to your INSTALLED_APPS settings. This is must be added BEFORE ‘’django.contrib.admin’’.

Set ‘’DISABLE_DARK_MODE = True’’ in your settings module to disable dark mode in admin panel user interface to all users.

Configuration per user

To have the theme configured as a user preference you will need to have a custom user model (model configured in settings.AUTH_USER_MODEL) as described in Django documentation:

Add a boolean field disable_dark_mode to your custom user model:

disable_dark_mode = models.BooleanField(
    verbose_name="Django Admin Theme",
    default=False choices=((False, "Dark"),
    (True, "Light")),
    null=True
)

After adding the field, run:

python manage.py makemigrations

It should generate a migration like this:

# Generated by Django 3.2.9 on 2021-12-27 19:17

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("app_for_the_auth_custom_model", "0XXX_previous_migration"),
    ]

    operations = [
        migrations.AddField(
            model_name="<Your Custom Auth User model>",
            name="disable_dark_mode",
            field=models.BooleanField(
                choices=[(False, "Dark"), (True, "Light")],
                default=False,
                null=True,
            ),
        ),
    ]

Run the migration:

python manage.py migrate

And the field will be added to your AUTH_USER_MODEL.

Go to the Django admin for your custom user model and add the field to be editable.

License

Licensed under BSD license. See license link in documentation.

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-non-dark-admin-2.0.2.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

django_non_dark_admin-2.0.2-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file django-non-dark-admin-2.0.2.tar.gz.

File metadata

  • Download URL: django-non-dark-admin-2.0.2.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.10.1 Linux/5.15.12-arch1-1

File hashes

Hashes for django-non-dark-admin-2.0.2.tar.gz
Algorithm Hash digest
SHA256 a0c616a5d7be761ae118c569c96e554be5c6486f0e6d31d842e16f9b51be64ad
MD5 0641540828df1b4be89123f03e4de0c4
BLAKE2b-256 39b35d1700fae38faf41986166c790a9eabc75b0661a5192000751419162d4f5

See more details on using hashes here.

File details

Details for the file django_non_dark_admin-2.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_non_dark_admin-2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 89ed8e16d2a94304c9e9fe6d7a0ba38d08f9902d0d003e4c4ec28a682fb3df58
MD5 c8952f54fcf7731f41da3570435128bc
BLAKE2b-256 1e40da71474b7aaafeb16a44c26358e10eee3d37890b8a01e3907feeb1d42b27

See more details on using hashes here.

Supported by

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