├── .gitignore ├── README.rst ├── admincommand ├── __init__.py ├── admin.py ├── core.py ├── management.py ├── models.py ├── query.py ├── templates │ └── admincommand │ │ ├── output.html │ │ └── run.html ├── tests.py ├── utils.py └── views.py ├── example ├── __init__.py ├── admincommand ├── exampleapp │ ├── __init__.py │ ├── admincommands.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── fibonnaci.py │ │ │ └── pi.py │ ├── models.py │ ├── tests.py │ └── views.py ├── manage.py ├── settings.py └── urls.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | example/db.sqlite -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/README.rst -------------------------------------------------------------------------------- /admincommand/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admincommand/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/admin.py -------------------------------------------------------------------------------- /admincommand/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/core.py -------------------------------------------------------------------------------- /admincommand/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/management.py -------------------------------------------------------------------------------- /admincommand/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/models.py -------------------------------------------------------------------------------- /admincommand/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/query.py -------------------------------------------------------------------------------- /admincommand/templates/admincommand/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/templates/admincommand/output.html -------------------------------------------------------------------------------- /admincommand/templates/admincommand/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/templates/admincommand/run.html -------------------------------------------------------------------------------- /admincommand/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/tests.py -------------------------------------------------------------------------------- /admincommand/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/admincommand/utils.py -------------------------------------------------------------------------------- /admincommand/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/admincommand: -------------------------------------------------------------------------------- 1 | ../admincommand -------------------------------------------------------------------------------- /example/exampleapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/exampleapp/admincommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/example/exampleapp/admincommands.py -------------------------------------------------------------------------------- /example/exampleapp/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/exampleapp/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/exampleapp/management/commands/fibonnaci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/example/exampleapp/management/commands/fibonnaci.py -------------------------------------------------------------------------------- /example/exampleapp/management/commands/pi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/example/exampleapp/management/commands/pi.py -------------------------------------------------------------------------------- /example/exampleapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/example/exampleapp/models.py -------------------------------------------------------------------------------- /example/exampleapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/example/exampleapp/tests.py -------------------------------------------------------------------------------- /example/exampleapp/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/example/urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-admincommand/HEAD/setup.py --------------------------------------------------------------------------------