aboutsummaryrefslogtreecommitdiff
path: root/budget/templates
AgeCommit message (Collapse)AuthorFilesLines
2011-12-03Small commit to add more informations in dashboard view.A.Avenel1-2/+2
2011-12-03oops, forgot to include dashboard.html in a previous commit. See #42Alexis Metaireau1-0/+11
2011-11-28Add a 'sumbit and add a new one' button for new bills. Fix #53Alexis Metaireau2-1/+6
2011-11-28Fix a little styling mistake. Now the menu displays the right wayAlexis Metaireau1-1/+1
2011-11-28Transform the bill addition form, using a popup. See #53Alexis Metaireau2-33/+18
2011-11-28reorganize the static folder structureAlexis Metaireau5-13/+7
2011-11-27update bootstrap to the last version. Clean some cssAlexis Metaireau4-8/+9
2011-11-27Fix #54. The flash message is now in greenAlexis Metaireau1-1/+1
2011-11-27merge with quentinAlexis Metaireau1-4/+2
2011-11-27change the icons, simplify some javascriptAlexis Metaireau1-6/+11
2011-11-26Members are now sorted by name in the balance.Tinmn1-3/+1
2011-11-24revert arnaud's commit about delete linksAlexis Metaireau1-67/+17
2011-11-21Correction of a (very) minor bug of bill hover (commit ↵Tinmn1-1/+1
6df17b7d97856c8b3d23bb02e55b0c5facba6071).
2011-11-20Bill's members highlights in the balance in accordance with #69.Tinmn1-174/+181
I'm not satisfied with the payer display but I have better in mind.
2011-11-20Change delete bill logo in accordance with #67.Tinmn1-1/+1
2011-11-20Bill owers are now separated with a ',' in the bill list.Tinmn1-1/+1
2011-11-20Addition of an auto hiding user information message in the add user text ↵Tinmn2-156/+167
field (with translation).
2011-11-17Minor CSS changesArnaud Bos1-2/+2
2011-11-02See #54. Move the flashing message to absolute positionning to avoid ↵Arnaud Bos1-3/+5
annoying shifting of the bills list.
2011-11-02Ease "Add a bill" form occurrence with slideUp/slideDown effects. Related to ↵Arnaud Bos1-3/+5
#53.
2011-11-02Add a way to delete a project. Fix #63Arnaud Bos2-1/+11
2011-11-01Merge pull request #65 from aavenel/masterArnaud Bos3-16/+16
Bug fix in order to show the calendar widget when you edit a bill.
2011-11-02First draft of fixing sidebar ugly hovering effect pointed in #51.Arnaud Bos1-17/+77
2011-11-02Bug fix in order to show the calendar widget when you edit a bill. Also fix ↵A.Avenel3-16/+16
another bug related to cancel button.
2011-11-01Make the new bill link more visible. Fix #50.Arnaud Bos1-2/+3
2011-11-01Replace edit / delete links by icons. Fix #49.Arnaud Bos1-2/+8
2011-11-01Improvement of the sidebar look. Related to #34. Fix #52.Arnaud Bos2-7/+19
2011-10-20Last selected payer and translations. Fix #47.Arnaud Bos1-2/+3
- Last selected payer selected by default when creating a new bill - Fix some translation typos and modify a few labels
2011-10-18Document the API. Fix #46Alexis Metaireau1-4/+4
2011-10-18Minor changes to the slidebar. See #34Alexis Metaireau2-1/+3
2011-10-18Paint sidebar in green. Close #34Arnaud Bos2-4/+4
2011-10-18change the link in the footer as wellAlexis Metaireau1-1/+1
2011-10-17Add the ability to change the language explicitely. I'm not sure the UI is ↵Alexis Metaireau1-1/+9
better with this. Any thoughts are welcome. Fix #35
2011-10-16Add a datepicker (with support of i18n). Fix #37Alexis Metaireau3-5/+15
2011-10-16Format floats with 2 decimals. Fix #39Alexis Metaireau1-1/+1
2011-10-15clicking on the logo should return on the homepageAlexis Metaireau1-1/+1
2011-10-15translate 'each' as wellAlexis Metaireau1-1/+1
2011-10-15add the project's title in the list of billsAlexis Metaireau2-1/+2
2011-10-15remove the archive feature for nowAlexis Metaireau1-1/+0
2011-10-15fix a bit the UI (identifier on bill's list)Alexis Metaireau2-2/+1
2011-10-15Translate the application using Flask-babel.Alexis Metaireau18-51/+75
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-08Do not prompt the user with a 'prompt()' in javascript when deleting ↵Alexis Metaireau1-1/+6
members. Fix #29
2011-10-08Add a password recovery feature. Fix #32Alexis Metaireau5-5/+28
2011-10-08iclude the edit_project templateAlexis Metaireau1-0/+8
2011-09-18Merge branch 'master' into auth-forms-usabilityArnaud Bos3-8/+16
2011-09-14Provide a way to edit a project. Fix #17Alexis Metaireau3-7/+15
2011-09-14Fix #26. Footer is now relativeAlexis Metaireau1-1/+1
2011-09-14Make the identifier clearer to the end-user.Arnaud Bos5-8/+19
- 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 Metaireau10-23/+23
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.