skillfed

django-adminplus

Add new pages to the Django admin.

django-adminplus v0.6 917.6K downloads/30d#4,725 on PyPI604
Permissive license Copyright (c) 2023, James Socol All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1.… (full text in the JSON record) DORMANT released

What it is and what it does

Django AdminPlus is a minimal extension to Django's admin interface that lets you register custom views without binding them to models. Instead of replacing the entire admin (as heavier packages do) or hijacking URLs, it provides a simple register_view method to attach arbitrary views to the admin namespace and display them in the admin dashboard.

You install it as a drop-in replacement for django.contrib.admin.site, add it to INSTALLED_APPS, and then use admin.site.register_view() to attach views—either as a function call or decorator. The package is fully backward-compatible with Django's built-in admin, so existing model registrations work unchanged. Views can have custom names, URL names for reversing, and conditional visibility.

Use it for:

  • Add a custom reporting or analytics dashboard page to the admin without creating a model.
  • Create admin-only tools (e.g., data import/export, system status, bulk operations) accessible from the admin interface.
  • Register a custom configuration or settings page in the admin that doesn't map to a database model.
  • Build admin views for third-party integrations or external data sources without model overhead.
  • Extend admin functionality with custom forms or workflows that don't fit the model-admin pattern.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Adds custom admin views to Django's admin interface without tying them to models, letting you register arbitrary views that appear in the admin dashboard.

Yes, if you need to add non-model views to Django admin and your project uses Python 3.7–3.11. The package is stable, has no dependencies, and carries permissive licensing. However, dormant maintenance means you should verify compatibility with your specific Django version before relying on it for new projects; consider it suitable for established codebases where it's already proven.

Install

django-adminplus on PyPI

pip

pip install django-adminplus

uv

uv add django-adminplus

poetry

poetry add django-adminplus

Installing django-adminplus

Before you install

Low install friction with no runtime dependencies. Maintenance is dormant—last release was 2023-12-05 and last commit 2024-01-27—but the repository remains active and the package supports current Python versions (3.7, 3.8, 3.9, 3.10, 3.11).

License in practice

BSD 3-Clause permissive license allows commercial and private use with minimal restrictions; you must retain copyright notice and disclaimer in distributions.

Quickstart

pip install django-adminplus

# In urls.py
from django.contrib import admin
from adminplus.sites import AdminSitePlus

admin.site = AdminSitePlus()
admin.autodiscover()

# In your app's admin.py
@admin.site.register_view('custom-path', 'My Custom View')
def my_view(request):
    return render(request, 'template.html')

Requires Django and Python 3.7 or later; must replace django.contrib.admin.site before calling admin.autodiscover().

Verify before relying

  • Compatibility with recent Django versions (4.2+) not explicitly confirmed in fact sheet.
  • Whether dormant maintenance status affects stability with current Django/Python releases.
  • Whether the package remains actively maintained despite the long gap since last release.

Package facts

License Copyright (c) 2023, James Socol All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1.… (full text in the JSON record) (permissive)
Python support supports the current Python release (>=3.7)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance dormant — 983 days since the last release
Last repo commit
First released
Downloads 917,636/month — #4,725 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: django_adminplus-0.6-py2.py3-none-any.whl

Development Status :: 4 - BetaEnvironment :: Web EnvironmentFramework :: DjangoIntended Audience :: DevelopersLicense :: OSI Approved :: BSD LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Software Development :: Libraries :: Python Modules

Tags

django admin custom viewsadd pages to django admindjango admin extensiondjango admin non-model viewsextend django admin interfacedjango admin dashboard customizationdjango admin view registration
django-adminweb-ui

More Python Modules packages

idna

Converts domain names between Unicode and…

permissive · top 100 on PyPI

setuptools

Setuptools is a Python build backend and…

permissive · top 100 on PyPI

PyYAML

PyYAML parses and emits YAML 1.1 data format,…

permissive · top 100 on PyPI

pydantic

Pydantic validates Python data structures…

permissive · top 100 on PyPI

annotated-types

Provides reusable metadata objects for use with…

permissive · top 100 on PyPI

typing-inspection

Provides runtime tools to inspect and…

permissive · top 100 on PyPI

django-admin-data-views

Adds custom data views to the Django admin…

permissive · top 15,000 on PyPI

django-admin-tools

Extends Django's default admin interface with a…

permissive · top 15,000 on PyPI

django-admin-extra-buttons

Adds custom buttons, links, and views to Django…

permissive · top 15,000 on PyPI

wagtail-modeladmin

Adds Django model administration interfaces to…

permissive · top 15,000 on PyPI

django-admin-env-notice

Adds a colored banner to Django Admin to…

permissive · top 15,000 on PyPI

dj-materialized-views

Manages PostgreSQL materialized views through a…

permissive · top 15,000 on PyPI

django-admin-autocomplete-filter

Adds autocomplete-based filtering to Django…

copyleft · top 15,000 on PyPI

django-admin-rangefilter

Adds date range, datetime range, and numeric…

permissive · top 5,000 on PyPI

django-object-actions

Adds custom action buttons to Django admin…

permissive · top 5,000 on PyPI

django-admin-sortable2

Adds drag-and-drop reordering of model…

permissive · top 5,000 on PyPI