├── README.md ├── db.sqlite3 ├── manage.py ├── todoapp ├── __init__.py ├── __init__.pyc ├── settings.py ├── settings.pyc ├── urls.py ├── urls.pyc ├── wsgi.py └── wsgi.pyc └── todolist ├── __init__.py ├── __init__.pyc ├── admin.py ├── admin.pyc ├── apps.py ├── migrations ├── 0001_initial.py ├── 0001_initial.pyc ├── 0002_auto_20170928_1126.py ├── 0002_auto_20170928_1126.pyc ├── __init__.py └── __init__.pyc ├── models.py ├── models.pyc ├── static └── css │ └── style.css ├── templates └── index.html ├── tests.py ├── views.py └── views.pyc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/manage.py -------------------------------------------------------------------------------- /todoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todoapp/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todoapp/__init__.pyc -------------------------------------------------------------------------------- /todoapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todoapp/settings.py -------------------------------------------------------------------------------- /todoapp/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todoapp/settings.pyc -------------------------------------------------------------------------------- /todoapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todoapp/urls.py -------------------------------------------------------------------------------- /todoapp/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todoapp/urls.pyc -------------------------------------------------------------------------------- /todoapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todoapp/wsgi.py -------------------------------------------------------------------------------- /todoapp/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todoapp/wsgi.pyc -------------------------------------------------------------------------------- /todolist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todolist/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/__init__.pyc -------------------------------------------------------------------------------- /todolist/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/admin.py -------------------------------------------------------------------------------- /todolist/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/admin.pyc -------------------------------------------------------------------------------- /todolist/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/apps.py -------------------------------------------------------------------------------- /todolist/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/migrations/0001_initial.py -------------------------------------------------------------------------------- /todolist/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /todolist/migrations/0002_auto_20170928_1126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/migrations/0002_auto_20170928_1126.py -------------------------------------------------------------------------------- /todolist/migrations/0002_auto_20170928_1126.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/migrations/0002_auto_20170928_1126.pyc -------------------------------------------------------------------------------- /todolist/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todolist/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/migrations/__init__.pyc -------------------------------------------------------------------------------- /todolist/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/models.py -------------------------------------------------------------------------------- /todolist/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/models.pyc -------------------------------------------------------------------------------- /todolist/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/static/css/style.css -------------------------------------------------------------------------------- /todolist/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/templates/index.html -------------------------------------------------------------------------------- /todolist/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/tests.py -------------------------------------------------------------------------------- /todolist/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/views.py -------------------------------------------------------------------------------- /todolist/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CITGuru/todoapp/HEAD/todolist/views.pyc --------------------------------------------------------------------------------