├── .gitignore ├── __init__.py ├── app.py ├── ext.py ├── forms.py ├── models.py ├── readme.md ├── requirements.txt ├── schema.sql ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.js │ └── npm.js └── templates ├── base.html ├── index.html ├── login.html └── modify.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea 3 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/app.py -------------------------------------------------------------------------------- /ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/ext.py -------------------------------------------------------------------------------- /forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/forms.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/models.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/schema.sql -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/modify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalor/todolist/HEAD/templates/modify.html --------------------------------------------------------------------------------