├── .gitignore ├── README.md ├── apps ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── manage.py ├── requirements.txt ├── root ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py └── templates └── apps ├── login.html ├── main.html ├── register.html ├── task.html ├── task_confirm_delete.html ├── task_form.html └── task_list.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Project exclude paths 2 | /venv/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/apps/admin.py -------------------------------------------------------------------------------- /apps/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/apps/apps.py -------------------------------------------------------------------------------- /apps/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/apps/forms.py -------------------------------------------------------------------------------- /apps/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/apps/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/apps/models.py -------------------------------------------------------------------------------- /apps/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/apps/tests.py -------------------------------------------------------------------------------- /apps/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/apps/urls.py -------------------------------------------------------------------------------- /apps/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/apps/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asgiref==3.5.2 2 | Django==4.1.3 3 | sqlparse==0.4.3 4 | -------------------------------------------------------------------------------- /root/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/root/asgi.py -------------------------------------------------------------------------------- /root/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/root/settings.py -------------------------------------------------------------------------------- /root/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/root/urls.py -------------------------------------------------------------------------------- /root/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/root/wsgi.py -------------------------------------------------------------------------------- /templates/apps/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/templates/apps/login.html -------------------------------------------------------------------------------- /templates/apps/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/templates/apps/main.html -------------------------------------------------------------------------------- /templates/apps/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/templates/apps/register.html -------------------------------------------------------------------------------- /templates/apps/task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/templates/apps/task.html -------------------------------------------------------------------------------- /templates/apps/task_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/templates/apps/task_confirm_delete.html -------------------------------------------------------------------------------- /templates/apps/task_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/templates/apps/task_form.html -------------------------------------------------------------------------------- /templates/apps/task_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javlondevv/todo_project/HEAD/templates/apps/task_list.html --------------------------------------------------------------------------------