Skip to main content

Reusable Django app for executing management commands from Django Admin

Project description

django-management-ui

Run any Django management command from the admin panel. No models, no migrations — just install and go.

Documentation

The app introspects argparse definitions of your commands and dynamically builds forms with appropriate widgets: text inputs, checkboxes, dropdowns, number fields, file uploads for Path arguments.

Features

  • Automatic discovery of all registered management commands
  • Dynamic form generation from argparse argument types
  • File upload with temp file lifecycle for Path arguments (upload or enter path as text)
  • Grouped display: command-specific args + collapsible BaseCommand options
  • Output capture (stdout/stderr) with execution time
  • Superuser-only access
  • Appears on the Django Admin index page in the app list as "Commands" section
  • Command blacklist to hide dangerous commands
  • Configurable execution timeout (default 30s)
  • Output truncation for large command outputs

Quick start

1. Install

pip install django-management-ui

2. Add to INSTALLED_APPS

INSTALLED_APPS = [
    ...
    "management_ui",
]

3. Add URL configuration

# urls.py
from django.contrib import admin
from django.urls import include, path

urlpatterns = [
    path("admin/", include("management_ui.urls")),
    path("admin/", admin.site.urls),
]

That's it. Navigate to /admin/commands/ to see all available commands.

How it works

argparse introspection → ArgumentInfo → Django form field → execute command → CommandResult
  1. Discovery — finds all registered management commands via django.core.management.get_commands()
  2. Introspection — parses argparse _actions into ArgumentInfo dataclasses
  3. Form generation — maps argument types to Django form fields:
Argument type Form field
store_true / store_false BooleanField (checkbox)
choices ChoiceField (dropdown)
type=int IntegerField
type=float FloatField
type=Path PathField (file upload + text input toggle)
default / type=str CharField
  1. Execution — runs command via call_command(), captures stdout/stderr, measures duration
  2. Result — displays output with success/error styling

Path argument support

When a command argument has type=Path, the form renders a dual-mode widget:

  • File upload mode (default) — upload a file, it's saved to /tmp/ with a unique name, path passed to command, temp file cleaned up after execution
  • Text path mode — enter a server path as text (toggle via "or enter path as text" link)

Requirements

  • Python >= 3.12
  • Django >= 4.2

License

MIT

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_management_ui-0.2.0.tar.gz (531.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_management_ui-0.2.0-py3-none-any.whl (28.2 kB view details)

Uploaded Python 3

File details

Details for the file django_management_ui-0.2.0.tar.gz.

File metadata

  • Download URL: django_management_ui-0.2.0.tar.gz
  • Upload date:
  • Size: 531.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.30 {"installer":{"name":"uv","version":"0.9.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"12","id":"bookworm","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for django_management_ui-0.2.0.tar.gz
Algorithm Hash digest
SHA256 3dcc6fad7c3f05e954a1fb26c69b18d36f915bdc7786fc046bc66e25de52dc95
MD5 9bf1fa4fa86357559c632754394d0606
BLAKE2b-256 7a061fffb2edce5cee31aa110c97ea965e1a5045528f147a8e5e04db22f901d2

See more details on using hashes here.

File details

Details for the file django_management_ui-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: django_management_ui-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 28.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.30 {"installer":{"name":"uv","version":"0.9.30","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"12","id":"bookworm","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for django_management_ui-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6543a008a4fffb62cef2f9d81c70c60c38ce392023313e3d0c1375df6eba7adf
MD5 30463a866675a8e7ff20c79f1840854c
BLAKE2b-256 7a25d25b4913e92d8a6a2e3b99490043b07fa49fb18ae2c7be1fed1bb01215d2

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