Skip to main content

Organize Django admin sections/models without additional apps

Project description

codecov pip

 ░▒▓███████▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓████████▓▒░▒▓█▓▒░      ░▒▓████████▓▒░
░▒▓█▓▒░      ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓█▓▒░      ░▒▓█▓▒░
░▒▓█▓▒░      ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓█▓▒░      ░▒▓█▓▒░
 ░▒▓██████▓▒░░▒▓████████▓▒░▒▓██████▓▒░ ░▒▓█▓▒░      ░▒▓██████▓▒░
       ░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓█▓▒░      ░▒▓█▓▒░
       ░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░      ░▒▓█▓▒░      ░▒▓█▓▒░
░▒▓███████▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓████████▓▒░▒▓████████▓▒░▒▓█▓▒░

Who?

Django Shelf is meant to be a simple way to categorize your model admins instead of relying on creating new apps for each category.

Bu... but why?

The main reason is simply to avoid creating new apps for each category of model admins. This is especially useful if you got legacy applications that will break if you try to split them into new apps.

Yes, I know that this is not the best practice, but sometimes you just need to do it.

How do I use it?

  1. Install the package using pip install django-admin-shelf.
  2. Add admin_shelf to your INSTALLED_APPS in your Django settings.
  3. Create categories in your admin.py file as follows:
from admin_shelf.admin import Category
from example.models import Model1

custom_category = Category(name="Custom Category")

@custom_category.register(Model1)
class Model1Admin(admin.ModelAdmin):
    pass

A little piece of documentation

The admin_shelf.admin.Category class is used to create categories for your model admins. You can register your model admins to these categories using the @category.register(Model) decorator.

You can set a order for both the categories and the model admins by passing an order argument to the Category class and the @register decorator, respectively.

Example:

from admin_shelf.admin import Category
from example.models import Model1, Model2

custom_category = Category(name="Custom Category", order=1)

@custom_category.register(Model1, order=2)
class Model1Admin(admin.ModelAdmin):
    pass

@custom_category.register(Model2, order=1)
class Model2Admin(admin.ModelAdmin):
    pass

Yes, it is just that simple. You can also use the @register decorator without passing a category, in which case it will be registered to the default category. Or use the default register from django admin if you want to register your model admin without a category.

Before shelf: Before using admin shelf

After shelf: After using admin shelf

Anything else?

Running the example app

To run the example app, you can use the following commands:

# You need to have docker installed
docker compose up example

Running the tests

To run the tests, you can use the following commands:

# You need to have docker installed
docker compose up test

How do I contribute?

If you want to contribute to this project, you can do so by creating an issue! And if you want to contribute with code, you can fork the repository and create a pull request.

Check the CONTRIBUTING.md file for more information on how to contribute.

Is it true that bananas are radioactive?

Yes.

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_shelf-0.1.1.tar.gz (22.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_admin_shelf-0.1.1-py3-none-any.whl (18.5 kB view details)

Uploaded Python 3

File details

Details for the file django_admin_shelf-0.1.1.tar.gz.

File metadata

  • Download URL: django_admin_shelf-0.1.1.tar.gz
  • Upload date:
  • Size: 22.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.5 Darwin/24.5.0

File hashes

Hashes for django_admin_shelf-0.1.1.tar.gz
Algorithm Hash digest
SHA256 a5d54c74bfb9a07d371931eedc29f0d24cbfec65b59d75600e63e16053eec60a
MD5 b222819d108fd95b6dad4626eed902da
BLAKE2b-256 7924569c37daeb1906c74c840200b8b1ac19e7c77e76ccdfb6f63dcf74281667

See more details on using hashes here.

File details

Details for the file django_admin_shelf-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: django_admin_shelf-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.5 Darwin/24.5.0

File hashes

Hashes for django_admin_shelf-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2e44c6ad73432970ee1dddaa6c125c546b71f6040cdc5ac0c7fcd2b2594facc0
MD5 65dab90fc61acad07e6bcac64939437b
BLAKE2b-256 70c7e81344df6aa2c772b32fbf08583f9f8bc6926b82e68855d49efc10bbe02c

See more details on using hashes here.

Supported by

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