{"id":14972839,"url":"https://github.com/daadu/django-admintool-command","last_synced_at":"2025-08-03T15:40:58.436Z","repository":{"id":57418851,"uuid":"201085928","full_name":"daadu/django-admintool-command","owner":"daadu","description":"Run django mangement commands from django-admin site","archived":false,"fork":false,"pushed_at":"2021-09-25T06:40:51.000Z","size":34,"stargazers_count":6,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-28T15:54:55.826Z","etag":null,"topics":["django","django-admin","django-admin-tools","django-application","django-commands","django-framework","django-management-command","django2"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/django-admintool-command","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/daadu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.txt","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-08-07T16:19:26.000Z","updated_at":"2024-10-04T13:10:00.000Z","dependencies_parsed_at":"2022-09-13T13:20:52.522Z","dependency_job_id":null,"html_url":"https://github.com/daadu/django-admintool-command","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/daadu/django-admintool-command","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daadu%2Fdjango-admintool-command","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daadu%2Fdjango-admintool-command/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daadu%2Fdjango-admintool-command/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daadu%2Fdjango-admintool-command/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daadu","download_url":"https://codeload.github.com/daadu/django-admintool-command/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daadu%2Fdjango-admintool-command/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268568738,"owners_count":24271455,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-03T02:00:12.545Z","response_time":2577,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django-admin","django-admin-tools","django-application","django-commands","django-framework","django-management-command","django2"],"created_at":"2024-09-24T13:47:37.245Z","updated_at":"2025-08-03T15:40:58.374Z","avatar_url":"https://github.com/daadu.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Django Admin Tool Command\n=========================\n\n![image](https://travis-ci.org/daadu/django-admintool-command.svg?branch=master%0A%20:target:%20https://travis-ci.org/daadu/django-admintool-command)\n\nA reusable Django app that allows to run mangement commands from admin\nsite\n\nInstallation\n------------\n\nTo get the latest stable release from PyPi\n\n    pip install django-admintool-command\n\nTo get the latest commit from GitHub\n\n    pip install -e git+git://github.com/daadu/django-admintool-command.git#egg=admintool_command\n\nTODO: Describe further installation steps (edit / remove the examples\nbelow):\n\nFollow installation instructions for\n\u003chttps://github.com/django-admin-tools/django-admin-tools\u003e\n\nAdd `admintool_command` to your `INSTALLED_APPS`\n\n    INSTALLED_APPS = (\n        ...,\n        'admin_tools',\n        'admin_tools.menu',\n        'admin_tools.dashboard',\n        'admintool_command',\n    )\n\nAdd the `admintool_command` URLs to your `urls.py`\n\n    urlpatterns = [\n        url(r'^admin/commands/', include('admintool_command.urls')),\n    ]\n\u003e NOTE: if you are using `admin` prefixed url in Django 3.2+ for `admintool_command` and `admin.site` both then put it above the \"admin\" site url or else you will get HTTP 404.\n\nUsage\n-----\n\nCommands need to inherit from admintool\\_command.AdminCommand and\nimplement at least a Form which is used to present the command\narguments.\n\nThen these are added to settings like:\n\n    ADMIN_TOOLS_COMMANDS = {\n        'app_name': ['command_name'],\n    }\n\nOptionally, add admintool\\_command.dashboards.AdminCommandMenu to your\ndjango-admin-tools menu.\n\nTODO: Describe about django-admin-tools\n\nTODO: Describe usage or point to docs. Also describe available settings\nand templatetags.\n\nContribute\n----------\n\nIf you want to contribute to this project, please perform the following\nsteps\n\n    # Fork this repository\n    # Clone your fork\n    virtualenv -p python3.6 venv\n    source venv/bin/activate\n    make develop\n\n    git co -b feature_branch master\n    # Implement your feature and tests\n    git add . \u0026\u0026 git commit\n    git push -u origin feature_branch\n    # Send us a pull request for your feature branch\n\nIn order to run the tests, simply execute `tox`. This will install four\nnew environments (for Django 1.11, 2.0, 2.1 and 2.2) and run the tests\nagainst all environments.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaadu%2Fdjango-admintool-command","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaadu%2Fdjango-admintool-command","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaadu%2Fdjango-admintool-command/lists"}