├── .gitignore ├── .hgignore ├── .hgtags ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── examples └── simple │ ├── app.py │ ├── requirements.txt │ └── templates │ ├── form.html │ ├── layout.html │ └── user │ ├── create.html │ ├── delete.html │ ├── detail.html │ ├── edit.html │ └── index.html ├── flask_diced.py ├── setup.py ├── tests └── test_flask_diced.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/.hgtags -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/simple/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/app.py -------------------------------------------------------------------------------- /examples/simple/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/requirements.txt -------------------------------------------------------------------------------- /examples/simple/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/templates/form.html -------------------------------------------------------------------------------- /examples/simple/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/templates/layout.html -------------------------------------------------------------------------------- /examples/simple/templates/user/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/templates/user/create.html -------------------------------------------------------------------------------- /examples/simple/templates/user/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/templates/user/delete.html -------------------------------------------------------------------------------- /examples/simple/templates/user/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/templates/user/detail.html -------------------------------------------------------------------------------- /examples/simple/templates/user/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/templates/user/edit.html -------------------------------------------------------------------------------- /examples/simple/templates/user/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/examples/simple/templates/user/index.html -------------------------------------------------------------------------------- /flask_diced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/flask_diced.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_flask_diced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/tests/test_flask_diced.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyx/flask-diced/HEAD/tox.ini --------------------------------------------------------------------------------