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.

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 in admin sidebar 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.13
  • 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.1.0.tar.gz (527.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_management_ui-0.1.0-py3-none-any.whl (28.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: django_management_ui-0.1.0.tar.gz
  • Upload date:
  • Size: 527.5 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.1.0.tar.gz
Algorithm Hash digest
SHA256 8891665da12208031a5bcd0176bc3fd3446df5bc00989bfc87b9eba6c3366667
MD5 e649e91d3e90ef4182169d7bc905167c
BLAKE2b-256 55595f38964842e6f59fb8c2cd361774e655969f3d17760d5049966fdc9b6a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: django_management_ui-0.1.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.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 60674803146229efa1e5219dd65a18bd1310a1cdf16affa9c413158a6ca1bb93
MD5 c15de331f8823a845f7f1c86199ec6ad
BLAKE2b-256 987625961d377623073308826fa56b7740299649ff947b9c440fb79948711d7c

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