├── .flake8 ├── .gitignore ├── README.md ├── api ├── __init__.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-38.pyc ├── serializers.py ├── urls.py └── views.py ├── board ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_rename_user_task_owner.py │ ├── 0003_alter_task_name.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ ├── 0002_alter_task_boardname.cpython-38.pyc │ │ ├── 0002_alter_task_options_remove_task_id_remove_task_status_and_more.cpython-38.pyc │ │ ├── 0002_remove_task_id_alter_task_uuid.cpython-38.pyc │ │ ├── 0002_rename_user_task_owner.cpython-38.pyc │ │ ├── 0003_remove_task_id_alter_task_uuid.cpython-38.pyc │ │ ├── 0003_rename_uuid_task_id.cpython-38.pyc │ │ ├── 0004_alter_task_boardname.cpython-38.pyc │ │ ├── 0005_remove_task_status.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── static │ └── favicon.ico ├── templates │ ├── base.html │ ├── index.html │ ├── login.html │ ├── messages.html │ ├── register.html │ └── settings.html ├── urls.py └── views.py ├── kanban ├── __init__.py ├── asgi.py ├── local_settings.py.example ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.dev.txt └── requirements.txt /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/api/apps.py -------------------------------------------------------------------------------- /api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/api/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/api/serializers.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/api/views.py -------------------------------------------------------------------------------- /board/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/admin.py -------------------------------------------------------------------------------- /board/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/apps.py -------------------------------------------------------------------------------- /board/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/forms.py -------------------------------------------------------------------------------- /board/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/0001_initial.py -------------------------------------------------------------------------------- /board/migrations/0002_rename_user_task_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/0002_rename_user_task_owner.py -------------------------------------------------------------------------------- /board/migrations/0003_alter_task_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/0003_alter_task_name.py -------------------------------------------------------------------------------- /board/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/0002_alter_task_boardname.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0002_alter_task_boardname.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/0002_alter_task_options_remove_task_id_remove_task_status_and_more.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0002_alter_task_options_remove_task_id_remove_task_status_and_more.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/0002_remove_task_id_alter_task_uuid.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0002_remove_task_id_alter_task_uuid.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/0002_rename_user_task_owner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0002_rename_user_task_owner.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/0003_remove_task_id_alter_task_uuid.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0003_remove_task_id_alter_task_uuid.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/0003_rename_uuid_task_id.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0003_rename_uuid_task_id.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/0004_alter_task_boardname.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0004_alter_task_boardname.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/0005_remove_task_status.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/0005_remove_task_status.cpython-38.pyc -------------------------------------------------------------------------------- /board/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /board/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/models.py -------------------------------------------------------------------------------- /board/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/static/favicon.ico -------------------------------------------------------------------------------- /board/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/templates/base.html -------------------------------------------------------------------------------- /board/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/templates/index.html -------------------------------------------------------------------------------- /board/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/templates/login.html -------------------------------------------------------------------------------- /board/templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/templates/messages.html -------------------------------------------------------------------------------- /board/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/templates/register.html -------------------------------------------------------------------------------- /board/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/templates/settings.html -------------------------------------------------------------------------------- /board/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/urls.py -------------------------------------------------------------------------------- /board/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/board/views.py -------------------------------------------------------------------------------- /kanban/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kanban/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/kanban/asgi.py -------------------------------------------------------------------------------- /kanban/local_settings.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/kanban/local_settings.py.example -------------------------------------------------------------------------------- /kanban/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/kanban/settings.py -------------------------------------------------------------------------------- /kanban/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/kanban/urls.py -------------------------------------------------------------------------------- /kanban/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/kanban/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natkaida/kanban/HEAD/requirements.txt --------------------------------------------------------------------------------