├── .gitignore ├── README.md ├── deploy ├── README.md ├── apache-settings.txt └── django.wsgi ├── manage.py ├── requirements.txt └── todo_django ├── __init__.py ├── admin.py ├── models.py ├── settings.py ├── templates ├── index.html ├── profile.html ├── single_task.html ├── site_base.html └── view_tags.html ├── urls.py ├── views.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/README.md -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/apache-settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/deploy/apache-settings.txt -------------------------------------------------------------------------------- /deploy/django.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/deploy/django.wsgi -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /todo_django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo_django/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/admin.py -------------------------------------------------------------------------------- /todo_django/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/models.py -------------------------------------------------------------------------------- /todo_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/settings.py -------------------------------------------------------------------------------- /todo_django/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/templates/index.html -------------------------------------------------------------------------------- /todo_django/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/templates/profile.html -------------------------------------------------------------------------------- /todo_django/templates/single_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/templates/single_task.html -------------------------------------------------------------------------------- /todo_django/templates/site_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/templates/site_base.html -------------------------------------------------------------------------------- /todo_django/templates/view_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/templates/view_tags.html -------------------------------------------------------------------------------- /todo_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/urls.py -------------------------------------------------------------------------------- /todo_django/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/views.py -------------------------------------------------------------------------------- /todo_django/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indypy/todo-django/HEAD/todo_django/wsgi.py --------------------------------------------------------------------------------