aboutsummaryrefslogtreecommitdiff
path: root/budget/templates
AgeCommit message (Collapse)AuthorFilesLines
2017-07-07Absolute imports & some other improvements (#243)Alexis Metaireau24-701/+0
* Use absolute imports and rename package to ihatemoney * Add a ihatemoney command * Factorize application creation logic * Refactor the tests * Update the wsgi.py module with the new create_app() function * Fix some styling thanks to Flake8. * Automate Flake8 check in the CI.
2017-06-27Merge pull request #226 from spiral-project/rename-delete-to-deactivateJocelynDelalande1-1/+1
Rename delete to deactivate for members. Fixes #177
2017-06-21Add meta viewport tag. Fixes #219. (#231)Lucas Verney1-0/+1
2017-06-21Rename delete to deactivate for members. Fixes #177Alexis Métaireau1-1/+1
2017-06-11More responsive layout (#213)Lucas Verney3-40/+44
Fix navbar responsiveness on mobile.
2017-05-18Public project creation and admin permissions (#210)0livd3-0/+20
* Add a @requires_admin decorator It can be used to protect specific endpoints with ADMIN_PASSWORD (a password that is stored unencrypted in the settings) The decorator has no effect if ADMIN_PASSWORD is an empty string (default value) * Require admin permissions to access create project endpoint When ADMIN_PASSWORD is not empty, project creation form on the home page will be replaced by a link to the create project endpoint so one is able to enter the admin password before filling the form
2017-05-17Add ACTIVATE_DEMO_PROJECT setting (#209)0livd1-0/+2
When set to False (True by default), it deactivates the demo project
2017-03-19Remove unused archive feature0livd2-20/+0
The archive table is not removed from the database model because it would involve a tricky migration fixes #170
2017-03-09Add export feature0livd2-1/+16
Bills and transactions can now be exported to json or csv ref #28
2017-02-16Fix id in form labelAlexandre Avenel1-1/+1
Checking item was broken when clicking on the label instead of the checkbox
2017-02-16Fix xss (#173)Alexandre Avenel2-2/+13
Fix #173 Rewrite multi select widget as a template in order to have all values properly escaped.
2017-02-07Update bootstrap-datepicker to 1.6.4Jocelyn Delalande2-1/+1
Actually switching to maintained fork at https://github.com/uxsolutions/bootstrap-datepicker ; the original project being unmaintained since 2012. - Works with recent jQuery - BS4 is not supported by bootstrap-datepicker, but actually, it works :-) ref https://github.com/uxsolutions/bootstrap-datepicker/issues/1670
2017-02-04Adapt list bills view to bootstrap 4Jocelyn Delalande1-9/+13
- modal classes and hierarchy changed since BS2 - striped tables are now handled by css3 pseudo-class rather than classes - fix placement/alignment for the button and comment above the table
2017-02-04Adapt tryout button to bootstrap 4Jocelyn Delalande1-1/+1
Trying to keep same look'n'feel.
2017-02-04Adapt navigation bar to bootstrap 4Jocelyn Delalande1-22/+17
Also fixed some weird alignment issues. I think this will need more work later (revamp the navbar layout to avoid that sensation of thing which are floating at random places in the navbar).
2017-02-04Add a label for screen-readers on user add formJocelyn Delalande1-1/+5
There was no label, which is bad for accessibility.
2017-02-04Refactor layout based on bootstrap 4 gridJocelyn Delalande5-38/+33
2017-02-04Adapt to bootstrap 4 formsJocelyn Delalande4-13/+17
- Adapt to BS4 class names and hierarchy - Redesign some forms to have the label above the input (mobile-friendly) - For the remaining inline form (add bill), use the grid, as BS no longer provides inline form alignment helpers
2017-02-04Update bootstrap dependency to bootstrap 4Jocelyn Delalande1-1/+2
2017-01-30Factor navbar between list_bills and settle_billJocelyn Delalande2-7/+2
2017-01-03Workaround rounding issues when displaying balance of usersBaptiste Jonglez2-6/+6
A user with a "0.00" balance would have either a "+0.00" in green or a "-0.00" in red, depending on the exact value of the floating-point value. Fix this by simply rounding to 2 digits before comparing to zero.
2016-06-16Hide the member weights in members list if all weights are "1".Jocelyn Delande1-1/+3
2016-06-16Added member edit formJocelyn Delande3-1/+32
2016-06-15display an edit button on members listJocelyn Delande1-1/+4
2016-06-15Ask for confirmation only for deleting usersJocelyn Delande1-1/+5
2016-06-15Added a template filter not to show zero decimals on user weightsJocelyn Delande1-1/+1
2016-06-15UI for showing user weights in user listJocelyn Delande1-1/+1
2015-09-25Prevent comma to be included in URLMathieu Leplatre1-1/+1
2015-09-25Prevent comma to be included in URLMathieu Leplatre1-1/+1
2015-08-20Remove trailing whitespacesJocelyn Delande7-14/+14
2014-07-22Format numbers in templatesAlexandre Avenel2-3/+3
2013-10-13Fix translation for password tooltipA.Avenel1-1/+1
- Javascript don't like non-escaped character - fix typo
2013-04-07bugfix : "Settle" link was not active on navbar.A.Avenel2-5/+4
2013-04-07More code cleanup for "settle bills"A.Avenel1-2/+2
2013-04-07use "member.id" instead of "member"A.Avenel2-11/+11
2013-02-19Merge branch 'flask0.9' of github.com:aavenel/ihatemoneyA.Avenel1-0/+1
2012-11-26update for "create archive" interfaceA.Avenel1-0/+1
2012-11-03Add unit tests for settle_billA.Avenel1-10/+21
2012-11-03Merge git://github.com/Lastpixl/ihatemoney into HEADA.Avenel3-6/+42
Conflicts: budget/templates/layout.html budget/templates/list_bills.html
2012-09-03Some love for the dashboard viewA.Avenel1-13/+14
2012-09-03Bugfix : "Submit and add a new one" not workingA.Avenel1-1/+1
2012-09-03Bugfix : calendar widget not working when you edit a bill.A.Avenel3-11/+9
2012-09-03Remove some old code no longer needed (Correct 404 errors about jquery-ui)A.Avenel1-6/+0
2012-09-02Fix project deletion. fix #87Alexis Metaireau1-1/+1
2012-04-05Update to Boostrap v2.Frédéric Sureau12-180/+138
Remove unused libs (QTip, JQueryUI) and add bootstrap-datepicker which is much lighter.
2012-03-12Split bills function and basic template.Xavier Mehrenberger3-5/+43
2012-02-11Add QTip2 and use it to display a message about access code on the first page.Adrien CLERC2-0/+22
2012-01-28Changed delete feature to only support POST method. Fix #21.Frédéric Sureau1-3/+7
2011-12-04Fix an error in dashboard.htmlAlexis Metaireau1-2/+2
2011-12-03Fix for a bug introduced in last commit : crash of dashboard view when there ↵A.Avenel1-1/+10
is no bill.