aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/forms.html
AgeCommit message (Collapse)AuthorFilesLines
2011-09-14Make the identifier clearer to the end-user.Arnaud Bos1-4/+4
- Send an email to the user with the summary of the created project containing a reminder of the identifier, password and a link. - Add flash message with the identifier in the /invite page/ - Add a small note containing the identifier in the upper right corner of the project main page.
2011-09-11Fix #24 on Authentication and New project forms usability.Arnaud Bos1-3/+8
- Do not display anymore the identifier field in home. - Let the user enter the id if the slug generated from project name already exists as a project id. - Moved get_billform_for from 'utils' to 'forms', to avoid issue (was 'from forms import ...' into utils, and 'from utils import ...' into forms, which causeed an error).
2011-09-09Refactor the application to use blueprints.Alexis Metaireau1-1/+1
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.
2011-09-09Start working on archive managementAlexis Metaireau1-2/+14
2011-08-21style the send invitations pageAlexis Metaireau1-0/+9
2011-08-21Fix a weird behavior with tests and databases.Alexis Metaireau1-9/+6
Now all the database during the tests is in memory, created for each test and cleared at the end of the test.
2011-08-21Re-design (Fixes #19)Alexis Metaireau1-16/+36
2011-08-10use checkboxes rather than select multiple. Fixes #10Alexis Metaireau1-1/+1
2011-08-09We now are able to set the date when adding a bill.Frédéric Sureau1-0/+1
2011-08-05Changing submit buttons displayFrédéric Sureau1-1/+3
2011-07-31Some more theming and fixes.Alexis Metaireau1-0/+43
2011-07-31Theming.Alexis Metaireau1-0/+13
Uses uni-form to style forms and add a macro to ease this. Of course, the overall thing has to be reworked, but having this in place will help us to have something easier to change when we will really care about design. All the form templates can now be defined in templates/forms.html and be called thansk to {{ forms.name_of_the_form(form) }}. I've done some styling, but that's really not my thing, feel free to modify it.