aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/forms.html
AgeCommit message (Collapse)AuthorFilesLines
2020-05-07Improve currencies (#604)Glandos1-1/+1
- Rename "No Currency" to ISO4217 "XXX" - Use Babel to render currency symbols and names in currency lists - Improve i18n in bill lists Fix #601 Fix #600
2020-04-29Feature/currencies (#541)dark0dave1-0/+5
Now each project can have a currency, default to None. Each bill can use a different currency, and a conversion to project default currency is done on settle. Fix #512
2020-04-20Add Project History Page (#553)Andrew Dickinson1-0/+18
Co-Authored-By: Glandos <bugs-github@antipoul.fr> All project activity can be tracked, using SQLAlchemy-continuum. IP addresses can optionally be recorded.
2020-02-09Update forms.html (#531)DavidRThrashJr1-1/+6
Made the html formatting more readable
2020-01-13Import previously exported json data (#518)Nicolas Vanvyve1-0/+9
Fix #417 * New tab upload * Extract data from JSON * Add users * Black format * Try to add bill * Import bills * Add french translation msg * Black reformat missing * Deactivated users are supported * Test import * Remove temp file in upload_json() * Incomplete tests * tests import * Update ihatemoney/translations/fr/LC_MESSAGES/messages.po Co-Authored-By: Rémy HUBSCHER <hubscher.remy@gmail.com> * Remove useless variable and check json format * Use String.IO and test for wrong json * Remove coma Co-authored-by: Rémy HUBSCHER <hubscher.remy@gmail.com>
2019-10-20Change the color of the add a member button.Alexis M1-1/+1
2019-10-19Remove jQuery datepicker.Alexis M1-1/+1
We don't need this anymore because all major browser now have implemented that feature on the browser itself. Closes #221.
2019-10-03feat: Optional field 'external link' in bill form.Leo Mouyna1-1/+2
An optional field has been added to the bill form to add a link to a real bill. A new action button allow user to see this bill. Breaking change with Bill model update for database, a migration is needed. See issue #429.
2019-08-26Rework invite people to projectBrice Maron1-7/+6
2019-07-25Improve usability specially for small screenBrice Maron1-4/+6
- add buttons class to fix alignments - add responsive info to big tables - use visibility instead of display to avoid jumping rows - reorganize menu in responsive
2018-09-03Fix form error on already existing participant. (#370)Alexis Metaireau1-0/+1
Fixes #350
2018-09-03Sort members alphabetically in the new bill form. (#374)Alexis Metaireau1-1/+1
Fixes #333
2018-09-03Simplify a JS function. (#371)Alexis Metaireau1-1/+1
2017-10-26Use token based auth to reset passwords (#269)0livd1-1/+9
Send a mail containing a password reset token link instead of sending a clear text password. Ref #232
2017-07-07Absolute imports & some other improvements (#243)Alexis Metaireau1-0/+168
* 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.