aboutsummaryrefslogtreecommitdiff
path: root/budget/forms.py
AgeCommit message (Collapse)AuthorFilesLines
2011-07-30Invite people after project creation.Alexis Metaireau1-0/+10
Uses the flask-mail extension.
2011-07-30Fixes an unwanted error "user already exists".Alexis Metaireau1-2/+2
Doing a query with an AND SQL statement needs to be done with multiple "filter" callswith SQLAlchemy. Here, we want to be sure that the username is not used AND that the project is the same than the eventual users that would match. The previous version of the code returned an user with the same name, even if the user wasn't in the right group.
2011-07-29Homepage created and project authentication refactoredFrédéric Sureau1-0/+1
2011-07-26Check project id before authenticationFrédéric Sureau1-1/+1
2011-07-23Manage users creationAlexis Metaireau1-1/+14
2011-07-23Project creation.Alexis Metaireau1-0/+11
2011-07-23Split the logic into different python modules:Alexis Metaireau1-0/+24
* web.py contains the controllers (also called views) + url definitions * models.py contains the models * forms.py contains the forms * utils.py contains a set of utility fonctions to ease the dev. process