├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── db.sqlite3 ├── manage.py ├── staticfiles ├── css │ └── style.css └── todoApp.png ├── todoApp ├── __init__.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py └── todos ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20191201_2357.py ├── 0003_auto_20191202_0000.py ├── 0004_auto_20191202_0004.py ├── 0005_auto_20191202_0011.py ├── 0006_remove_todo_deadline.py ├── 0007_auto_20191202_0323.py ├── 0008_auto_20191202_0809.py └── __init__.py ├── models.py ├── templates └── todos │ ├── base.html │ └── index.html ├── tests.py ├── urls.py └── views.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/manage.py -------------------------------------------------------------------------------- /staticfiles/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/staticfiles/css/style.css -------------------------------------------------------------------------------- /staticfiles/todoApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/staticfiles/todoApp.png -------------------------------------------------------------------------------- /todoApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoApp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todoApp/settings.py -------------------------------------------------------------------------------- /todoApp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todoApp/urls.py -------------------------------------------------------------------------------- /todoApp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todoApp/views.py -------------------------------------------------------------------------------- /todoApp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todoApp/wsgi.py -------------------------------------------------------------------------------- /todos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/admin.py -------------------------------------------------------------------------------- /todos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/apps.py -------------------------------------------------------------------------------- /todos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/migrations/0001_initial.py -------------------------------------------------------------------------------- /todos/migrations/0002_auto_20191201_2357.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/migrations/0002_auto_20191201_2357.py -------------------------------------------------------------------------------- /todos/migrations/0003_auto_20191202_0000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/migrations/0003_auto_20191202_0000.py -------------------------------------------------------------------------------- /todos/migrations/0004_auto_20191202_0004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/migrations/0004_auto_20191202_0004.py -------------------------------------------------------------------------------- /todos/migrations/0005_auto_20191202_0011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/migrations/0005_auto_20191202_0011.py -------------------------------------------------------------------------------- /todos/migrations/0006_remove_todo_deadline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/migrations/0006_remove_todo_deadline.py -------------------------------------------------------------------------------- /todos/migrations/0007_auto_20191202_0323.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/migrations/0007_auto_20191202_0323.py -------------------------------------------------------------------------------- /todos/migrations/0008_auto_20191202_0809.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/migrations/0008_auto_20191202_0809.py -------------------------------------------------------------------------------- /todos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/models.py -------------------------------------------------------------------------------- /todos/templates/todos/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/templates/todos/base.html -------------------------------------------------------------------------------- /todos/templates/todos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/templates/todos/index.html -------------------------------------------------------------------------------- /todos/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/tests.py -------------------------------------------------------------------------------- /todos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/urls.py -------------------------------------------------------------------------------- /todos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreys7/django-todo/HEAD/todos/views.py --------------------------------------------------------------------------------