Skip to content
NamPNQ edited this page Nov 26, 2013 · 4 revisions

Layout:

├── admin │   ├── init.py │   ├── routes.py --> Router for admin │   ├── templates │   │   └── admin --> Template admin here │   │   ├── base.html │   │   ├── edit.html │   │   ├── geochart.html │   │   ├── list.html │   │   └── macros.html │   ├── ... ├── appengine_config.py --> app engine config ├── application │   ├── config.py --> config for application │   ├── external --> external libraries │   ├── forms.py --> form using WTForm │   ├── handlers.py --> handler for application │   ├── init.py │   ├── lib --> some utils │   ├── models.py --> model │   ├── routes.py --> router for application │   ├── static │   │   ├── css --> css for application │   │   ├── img --> image for application │   │   ├── js │   │   │   ├── libs --> js libs │   │   │   ├── main.js --> main javascript, │   │   │   ├── plugins.js --> some jquery plugin │   │   │   └── welcome.js --> welcome page js │   │   └── less │   ├── templates --> template for applcation │   └── tests.py ├── app.yaml ├── config │   ├── init.py │   ├── init.pyc │   ├── localhost.py │   ├── localhost.pyc │   ├── production.py │   └── testing.py ├── COPYING.LESSER ├── dos.yml ├── fabfile.py ├── index.yaml ├── locale │   ├── babel.cfg │   ├── en_US │   │   └── LC_MESSAGES │   │   ├── messages.mo │   │   └── messages.po │   ├── messages.pot │   └── vi_VN │   └── LC_MESSAGES │   ├── messages.mo │   └── messages.po ├── main.py ├── main.pyc ├── README.md ├── routes.py ├── routes.pyc ├── static │   ├── apple-touch-icon.png │   ├── apple-touch-icon-precomposed.png │   ├── crossdomain.xml │   ├── css │   │   └── style.css │   ├── favicon.ico │   ├── humans.txt │   ├── img │   │   └── logo.png │   ├── js │   │   └── script.js │   ├── less │   │   └── style.less │   ├── README.TXT │   └── robots.txt ├── templates │   └── secure_zone.html ├── testrunner.py └── web ├── handlers.py ├── handlers.pyc ├── init.py ├── init.pyc └── tests.py

Clone this wiki locally