├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TODO.md └── todo ├── account ├── __init__.py ├── admin.py ├── api │ ├── __init__.py │ ├── serializers.py │ ├── urls.py │ └── views.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ ├── base.html │ ├── registration │ │ ├── login.html │ │ └── success.html │ └── signup.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── manage.py ├── todo ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py └── todo_app ├── __init__.py ├── admin.py ├── api ├── __init__.py ├── serializers.py ├── urls.py └── views.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20210903_1032.py └── __init__.py ├── models.py ├── templates ├── add_task.html └── base.html ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/TODO.md -------------------------------------------------------------------------------- /todo/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/admin.py -------------------------------------------------------------------------------- /todo/account/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/account/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/api/serializers.py -------------------------------------------------------------------------------- /todo/account/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/api/urls.py -------------------------------------------------------------------------------- /todo/account/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/api/views.py -------------------------------------------------------------------------------- /todo/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/apps.py -------------------------------------------------------------------------------- /todo/account/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/forms.py -------------------------------------------------------------------------------- /todo/account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/migrations/0001_initial.py -------------------------------------------------------------------------------- /todo/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/models.py -------------------------------------------------------------------------------- /todo/account/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/templates/base.html -------------------------------------------------------------------------------- /todo/account/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/templates/registration/login.html -------------------------------------------------------------------------------- /todo/account/templates/registration/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/templates/registration/success.html -------------------------------------------------------------------------------- /todo/account/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/templates/signup.html -------------------------------------------------------------------------------- /todo/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/tests.py -------------------------------------------------------------------------------- /todo/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/urls.py -------------------------------------------------------------------------------- /todo/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/account/views.py -------------------------------------------------------------------------------- /todo/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/db.sqlite3 -------------------------------------------------------------------------------- /todo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/manage.py -------------------------------------------------------------------------------- /todo/todo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/todo/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo/asgi.py -------------------------------------------------------------------------------- /todo/todo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo/settings.py -------------------------------------------------------------------------------- /todo/todo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo/urls.py -------------------------------------------------------------------------------- /todo/todo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo/wsgi.py -------------------------------------------------------------------------------- /todo/todo_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/todo_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/admin.py -------------------------------------------------------------------------------- /todo/todo_app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/todo_app/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/api/serializers.py -------------------------------------------------------------------------------- /todo/todo_app/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/api/urls.py -------------------------------------------------------------------------------- /todo/todo_app/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/api/views.py -------------------------------------------------------------------------------- /todo/todo_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/apps.py -------------------------------------------------------------------------------- /todo/todo_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/forms.py -------------------------------------------------------------------------------- /todo/todo_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /todo/todo_app/migrations/0002_auto_20210903_1032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/migrations/0002_auto_20210903_1032.py -------------------------------------------------------------------------------- /todo/todo_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/todo_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/models.py -------------------------------------------------------------------------------- /todo/todo_app/templates/add_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/templates/add_task.html -------------------------------------------------------------------------------- /todo/todo_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/templates/base.html -------------------------------------------------------------------------------- /todo/todo_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/tests.py -------------------------------------------------------------------------------- /todo/todo_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/urls.py -------------------------------------------------------------------------------- /todo/todo_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriaarrr/todo-with-django/HEAD/todo/todo_app/views.py --------------------------------------------------------------------------------