├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── admin_commands ├── __init__.py ├── admin.py ├── app_settings.py ├── apps.py ├── forms.py ├── locale │ └── ar │ │ └── LC_MESSAGES │ │ └── django.po ├── management │ └── commands │ │ └── test_command.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── admin_commands │ │ └── execute_command.html ├── tests.py ├── utils.py └── views.py ├── manage.py ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_settings.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/README.rst -------------------------------------------------------------------------------- /admin_commands/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.1.3' 2 | -------------------------------------------------------------------------------- /admin_commands/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/admin.py -------------------------------------------------------------------------------- /admin_commands/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/app_settings.py -------------------------------------------------------------------------------- /admin_commands/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/apps.py -------------------------------------------------------------------------------- /admin_commands/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/forms.py -------------------------------------------------------------------------------- /admin_commands/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /admin_commands/management/commands/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/management/commands/test_command.py -------------------------------------------------------------------------------- /admin_commands/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/migrations/0001_initial.py -------------------------------------------------------------------------------- /admin_commands/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_commands/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/models.py -------------------------------------------------------------------------------- /admin_commands/templates/admin_commands/execute_command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/templates/admin_commands/execute_command.html -------------------------------------------------------------------------------- /admin_commands/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/tests.py -------------------------------------------------------------------------------- /admin_commands/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/admin_commands/utils.py -------------------------------------------------------------------------------- /admin_commands/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django>=3.2 -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KUWAITNET/django-admin-commands/HEAD/tests/urls.py --------------------------------------------------------------------------------