Skip to main content

A django app that lets you add standard class-based views to the django admin index and navigation.

Project description

PyPI Python Supported Django Supported Tests Docs CodeCov PyPI - Downloads

Django Custom Admin Pages

A django app that lets you add standard class-based views to the django admin index and navigation. Create a view, register it like you would a ModelAdmin, and it appears in the Django Admin Nav.

Example View

Check out the full documentation for more in-depth information.

Quick Start

  1. Install the app from pypi pip install django_custom_admin_pages
  2. Remove django.contrib.admin from your installed apps
  3. In your django settings file add the following lines to your `INSTALLED_APPS``:
INSTALLED_APPS = [
   # "django.contrib.admin", #REMOVE THIS LINE
   # ...
   "django_custom_admin_pages",
   "django_custom_admin_pages.admin.CustomAdminConfig"
   # ...
]

Usage

To create a new custom admin view:

  1. Create a class-based view in django_custom_admin_pages.views which inherits from custom_admin.views.admin_base_view.AdminBaseView.
  2. Set the view class attribute view_name to whatever name you want displayed in the admin index.
  3. Register the view similar to how you would register a ModelAdmin using a custom admin function: admin.site.register_view(YourView).
  4. Use the template django_custom_admin_pages.templates.base_custom_admin.html as a sample for how to extend the admin templates so that your view has the admin nav.

Also see test_proj.test_app.views.example_view.py

Example:

## in django_custom_admin_pages.views.your_special_view.py
from django.contrib import admin
from django.views.generic import TemplateView
from django_custom_admin_pages.views.admin_base_view import AdminBaseView

class YourCustomView(AdminBaseView, TemplateView):
   view_name="My Super Special View"
   template_name="my_template.html"
   route_name="some-custom-route-name" # if omitted defaults to snake_case of view_name
   app_label="my_app" # if omitted defaults to "django_custom_admin_pages". Must match app in settings

   # always call super() on get_context_data and use it to start your context dict.
   # the context required to render admin nav-bar is included here.
   def get_context_data(self, *args, **kwargs):
      context:dict = super().get_context_data(*args, **kwargs)
      # add your context ...
      return context

admin.site.register_view(YourCustomView)

Your template should extend admin/base.html or base_custom_admin.html template:

<!-- my_template.html -->
{% extends 'base_custom_admin.html' with title="your page title" %}
{% block content %}
<h1>Hello World</h1>
{% endblock %}

Important: Custom Views Must Be Registered Before Admin URLs are Loaded

Be sure to import the files where your views are stored prior to loading your root url conf. For example:

# project/urls.py
from django.contrib import admin

# importing view before url_patterns ensures it's registered!
from some_app.views import YourCustomView

url_patterns = [
   path("admin/", admin.site.urls),
   ...
]

Configurable Settings

  • CUSTOM_ADMIN_DEFAULT_APP_LABEL: set to override the default app_label (default: django_custom_admin_pages)

Supported Versions

See tox.ini for list of python / django version which are tested for this project. For example, Python 3.10 is tested for Django 3.2 - 5.2.

Contributing

Reach out to the author if you'd like to contribute! Also free to file bug reports or feature requests via github issues.

Local Development

To start the test_project:

  • cd <repo_root>
  • poetry install --with dev
  • python test_proj/manage.py migrate
  • python test_proj/manage.py createsuperuser (follow prompts)
  • python test_proj/manage.py runserver
  • Navigate too localhost:8000/admin, log in, and there should be one custom admin view.

To run the test suite:

  • poetry run pytest

Prior to committing:

  1. Run pylint:

    • cd <repo_root>
    • poetry run pylint django_custom_admin_pages/
  2. Run black:

    • poetry run black .
  3. Run isort:

    • poetry run isort django_custom_admin_pages/

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_custom_admin_pages-1.2.7.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

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

django_custom_admin_pages-1.2.7-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file django_custom_admin_pages-1.2.7.tar.gz.

File metadata

  • Download URL: django_custom_admin_pages-1.2.7.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.3 Linux/5.15.167.4-microsoft-standard-WSL2

File hashes

Hashes for django_custom_admin_pages-1.2.7.tar.gz
Algorithm Hash digest
SHA256 75ed9e523766f8d59ba33facfd7dab14ee7d1411513b03866c2799bfe9bf6b25
MD5 c2d18d4bdc82a18911c1e84b1647b76c
BLAKE2b-256 06a7558936fcddef6d56b42f2c2d4bd6205ea5e1eff7fa34d01c8bfe06cbdf85

See more details on using hashes here.

File details

Details for the file django_custom_admin_pages-1.2.7-py3-none-any.whl.

File metadata

  • Download URL: django_custom_admin_pages-1.2.7-py3-none-any.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.3 Linux/5.15.167.4-microsoft-standard-WSL2

File hashes

Hashes for django_custom_admin_pages-1.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 c2c669ff20c11993334512e0cf51652dc53cf43517da77d864bc8d6c45613a02
MD5 5617b706f069073e79f10fb81cbba837
BLAKE2b-256 d65c0e388271cc11ae10dd6528005bc0e50fac20eb0e1c087c5e7b89be810921

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