├── .coveragerc ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── Makefile ├── README.md ├── django_task ├── __init__.py ├── admin.py ├── app_settings.py ├── apps.py ├── exceptions.py ├── forms.py ├── job.py ├── locale │ └── it │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ └── commands │ │ ├── delete_all_tasks.py │ │ ├── dump_all_tasks.py │ │ └── revoke_pending_tasks.py ├── models.py ├── static │ ├── css │ │ └── django_task.css │ ├── img │ │ └── django_task │ │ │ ├── icon-clock.gif │ │ │ ├── icon-no.gif │ │ │ ├── icon-question.gif │ │ │ ├── icon-spinner.gif │ │ │ ├── icon-spinner.png │ │ │ └── icon-yes.gif │ └── js │ │ └── django_task.js ├── task_command.py ├── templates │ └── django_task │ │ └── base.html ├── templatetags │ ├── __init__.py │ └── django_task_tags.py ├── tests │ ├── __init__.py │ ├── jobs.py │ ├── models.py │ ├── settings.py │ └── test_task_models.py ├── urls.py ├── utils.py └── views.py ├── example ├── .gitignore ├── README.rst ├── etc │ ├── screenshot_001.png │ ├── screenshot_002.png │ └── screenshot_003.png ├── example │ ├── __init__.py │ ├── settings.py │ ├── test_settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── requirements.txt ├── tasks │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── jobs.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── count_beans.py │ │ │ ├── count_beans_threaded.py │ │ │ └── send_email.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20191014_1413.py │ │ ├── 0003_countbeanstaskthreaded.py │ │ ├── 0004_countbeanstask_task_verbosity.py │ │ └── __init__.py │ ├── models.py │ └── tests │ │ ├── __init__.py │ │ ├── base_case.py │ │ └── test_count_beans.py └── templates │ ├── base.html │ └── django_task │ └── base.html ├── manage.py ├── pyproject.toml ├── requirements.txt ├── requirements_dev.txt ├── requirements_test.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── settings.py ├── test_models.py └── urls.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/README.md -------------------------------------------------------------------------------- /django_task/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.1.1' 2 | -------------------------------------------------------------------------------- /django_task/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/admin.py -------------------------------------------------------------------------------- /django_task/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/app_settings.py -------------------------------------------------------------------------------- /django_task/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/apps.py -------------------------------------------------------------------------------- /django_task/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/exceptions.py -------------------------------------------------------------------------------- /django_task/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/forms.py -------------------------------------------------------------------------------- /django_task/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/job.py -------------------------------------------------------------------------------- /django_task/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_task/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_task/management/commands/delete_all_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/management/commands/delete_all_tasks.py -------------------------------------------------------------------------------- /django_task/management/commands/dump_all_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/management/commands/dump_all_tasks.py -------------------------------------------------------------------------------- /django_task/management/commands/revoke_pending_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/management/commands/revoke_pending_tasks.py -------------------------------------------------------------------------------- /django_task/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/models.py -------------------------------------------------------------------------------- /django_task/static/css/django_task.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/static/css/django_task.css -------------------------------------------------------------------------------- /django_task/static/img/django_task/icon-clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/static/img/django_task/icon-clock.gif -------------------------------------------------------------------------------- /django_task/static/img/django_task/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/static/img/django_task/icon-no.gif -------------------------------------------------------------------------------- /django_task/static/img/django_task/icon-question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/static/img/django_task/icon-question.gif -------------------------------------------------------------------------------- /django_task/static/img/django_task/icon-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/static/img/django_task/icon-spinner.gif -------------------------------------------------------------------------------- /django_task/static/img/django_task/icon-spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/static/img/django_task/icon-spinner.png -------------------------------------------------------------------------------- /django_task/static/img/django_task/icon-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/static/img/django_task/icon-yes.gif -------------------------------------------------------------------------------- /django_task/static/js/django_task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/static/js/django_task.js -------------------------------------------------------------------------------- /django_task/task_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/task_command.py -------------------------------------------------------------------------------- /django_task/templates/django_task/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/templates/django_task/base.html -------------------------------------------------------------------------------- /django_task/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_task/templatetags/django_task_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/templatetags/django_task_tags.py -------------------------------------------------------------------------------- /django_task/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_task/tests/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/tests/jobs.py -------------------------------------------------------------------------------- /django_task/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/tests/models.py -------------------------------------------------------------------------------- /django_task/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/tests/settings.py -------------------------------------------------------------------------------- /django_task/tests/test_task_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/tests/test_task_models.py -------------------------------------------------------------------------------- /django_task/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/urls.py -------------------------------------------------------------------------------- /django_task/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/utils.py -------------------------------------------------------------------------------- /django_task/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/django_task/views.py -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | db.sqlite3 2 | media/ 3 | itermocil.yml 4 | -------------------------------------------------------------------------------- /example/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/README.rst -------------------------------------------------------------------------------- /example/etc/screenshot_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/etc/screenshot_001.png -------------------------------------------------------------------------------- /example/etc/screenshot_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/etc/screenshot_002.png -------------------------------------------------------------------------------- /example/etc/screenshot_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/etc/screenshot_003.png -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/example/test_settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/requirements.txt -------------------------------------------------------------------------------- /example/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/tasks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/admin.py -------------------------------------------------------------------------------- /example/tasks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/apps.py -------------------------------------------------------------------------------- /example/tasks/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/jobs.py -------------------------------------------------------------------------------- /example/tasks/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/tasks/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/tasks/management/commands/count_beans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/management/commands/count_beans.py -------------------------------------------------------------------------------- /example/tasks/management/commands/count_beans_threaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/management/commands/count_beans_threaded.py -------------------------------------------------------------------------------- /example/tasks/management/commands/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/management/commands/send_email.py -------------------------------------------------------------------------------- /example/tasks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/tasks/migrations/0002_auto_20191014_1413.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/migrations/0002_auto_20191014_1413.py -------------------------------------------------------------------------------- /example/tasks/migrations/0003_countbeanstaskthreaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/migrations/0003_countbeanstaskthreaded.py -------------------------------------------------------------------------------- /example/tasks/migrations/0004_countbeanstask_task_verbosity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/migrations/0004_countbeanstask_task_verbosity.py -------------------------------------------------------------------------------- /example/tasks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/tasks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/models.py -------------------------------------------------------------------------------- /example/tasks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/tasks/tests/base_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/tests/base_case.py -------------------------------------------------------------------------------- /example/tasks/tests/test_count_beans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/tasks/tests/test_count_beans.py -------------------------------------------------------------------------------- /example/templates/base.html: -------------------------------------------------------------------------------- 1 | {% extends 'django_task/base.html' %} 2 | -------------------------------------------------------------------------------- /example/templates/django_task/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/example/templates/django_task/base.html -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/manage.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | bumpversion 2 | wheel 3 | 4 | -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morlandi/django-task/HEAD/tox.ini --------------------------------------------------------------------------------