├── README.md ├── db.sqlite3 ├── manage.py ├── todolist ├── __init__.py ├── __init__.pyc ├── settings.py ├── settings.pyc ├── urls.py ├── urls.pyc ├── wsgi.py └── wsgi.pyc └── todos ├── __init__.py ├── __init__.pyc ├── admin.py ├── admin.pyc ├── apps.py ├── apps.pyc ├── migrations ├── 0001_initial.py ├── 0001_initial.pyc ├── __init__.py └── __init__.pyc ├── models.py ├── models.pyc ├── static └── css │ └── style.css ├── templates ├── add.html ├── admin │ └── base_site.html ├── details.html ├── index.html └── partials │ ├── footer.html │ └── header.html ├── tests.py ├── urls.py ├── urls.pyc ├── views.py └── views.pyc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/manage.py -------------------------------------------------------------------------------- /todolist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todolist/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todolist/__init__.pyc -------------------------------------------------------------------------------- /todolist/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todolist/settings.py -------------------------------------------------------------------------------- /todolist/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todolist/settings.pyc -------------------------------------------------------------------------------- /todolist/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todolist/urls.py -------------------------------------------------------------------------------- /todolist/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todolist/urls.pyc -------------------------------------------------------------------------------- /todolist/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todolist/wsgi.py -------------------------------------------------------------------------------- /todolist/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todolist/wsgi.pyc -------------------------------------------------------------------------------- /todos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todos/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/__init__.pyc -------------------------------------------------------------------------------- /todos/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/admin.py -------------------------------------------------------------------------------- /todos/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/admin.pyc -------------------------------------------------------------------------------- /todos/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/apps.py -------------------------------------------------------------------------------- /todos/apps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/apps.pyc -------------------------------------------------------------------------------- /todos/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/migrations/0001_initial.py -------------------------------------------------------------------------------- /todos/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /todos/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todos/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/migrations/__init__.pyc -------------------------------------------------------------------------------- /todos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/models.py -------------------------------------------------------------------------------- /todos/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/models.pyc -------------------------------------------------------------------------------- /todos/static/css/style.css: -------------------------------------------------------------------------------- 1 | a { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /todos/templates/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/templates/add.html -------------------------------------------------------------------------------- /todos/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/templates/admin/base_site.html -------------------------------------------------------------------------------- /todos/templates/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/templates/details.html -------------------------------------------------------------------------------- /todos/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/templates/index.html -------------------------------------------------------------------------------- /todos/templates/partials/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /todos/templates/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/templates/partials/header.html -------------------------------------------------------------------------------- /todos/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/tests.py -------------------------------------------------------------------------------- /todos/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/urls.py -------------------------------------------------------------------------------- /todos/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/urls.pyc -------------------------------------------------------------------------------- /todos/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/views.py -------------------------------------------------------------------------------- /todos/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/django-todolist/HEAD/todos/views.pyc --------------------------------------------------------------------------------