├── .gitignore ├── README.md ├── manage.py ├── simple_todo ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── todo ├── __init__.py ├── admin.py ├── models.py ├── static ├── css │ └── bootstrap.min.css ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ ├── ajaxpost.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.js │ └── modernizr.js ├── templates └── todo │ ├── showtodo.html │ ├── simpleTodo.html │ └── updatetodo.html ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/manage.py -------------------------------------------------------------------------------- /simple_todo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_todo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/simple_todo/settings.py -------------------------------------------------------------------------------- /simple_todo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/simple_todo/urls.py -------------------------------------------------------------------------------- /simple_todo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/simple_todo/wsgi.py -------------------------------------------------------------------------------- /todo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/admin.py -------------------------------------------------------------------------------- /todo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/models.py -------------------------------------------------------------------------------- /todo/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /todo/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /todo/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /todo/static/js/ajaxpost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/static/js/ajaxpost.js -------------------------------------------------------------------------------- /todo/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/static/js/bootstrap.js -------------------------------------------------------------------------------- /todo/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /todo/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/static/js/jquery.js -------------------------------------------------------------------------------- /todo/static/js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/static/js/modernizr.js -------------------------------------------------------------------------------- /todo/templates/todo/showtodo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/templates/todo/showtodo.html -------------------------------------------------------------------------------- /todo/templates/todo/simpleTodo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/templates/todo/simpleTodo.html -------------------------------------------------------------------------------- /todo/templates/todo/updatetodo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/templates/todo/updatetodo.html -------------------------------------------------------------------------------- /todo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/tests.py -------------------------------------------------------------------------------- /todo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/urls.py -------------------------------------------------------------------------------- /todo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusibi/Django-Simple-Todo/HEAD/todo/views.py --------------------------------------------------------------------------------