aboutsummaryrefslogtreecommitdiff
path: root/budget/run.py
AgeCommit message (Collapse)AuthorFilesLines
2013-02-18update for flask 0.9A.Avenel1-1/+1
2012-06-10add sentry supportAlexis Metaireau1-0/+4
2012-03-06remove unused imports and from blah import *Feth AREZKI1-3/+3
2011-10-17Add the ability to change the language explicitely. I'm not sure the UI is ↵Alexis Metaireau1-1/+3
better with this. Any thoughts are welcome. Fix #35
2011-10-16Add a datepicker (with support of i18n). Fix #37Alexis Metaireau1-2/+3
2011-10-15fix a bit the UI (identifier on bill's list)Alexis Metaireau1-2/+3
2011-10-15Translate the application using Flask-babel.Alexis Metaireau1-2/+9
The only translation so far is french, but more can be added. The browser language is used thanks to the HTTP languages headers. There are still some problems with the translation of some strings, I don't know why this is. See #12
2011-10-13Fix some problems related to postgresql and modelsAlexis Metaireau1-0/+2
2011-09-11Add Handlers for members and bills.Alexis Metaireau1-0/+1
2011-09-11API first draft: utils. (related to #27)Alexis Metaireau1-1/+2
Introduces the "rest" module, with reusable utils for flask applications (will be packaged as a flask extension later on).
2011-09-09Refactor the application to use blueprints.Alexis Metaireau1-0/+22
This allows to isolate some behavior in the context of the web application so the API and the web application can behave in different ways.