aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/list_bills.html
AgeCommit message (Collapse)AuthorFilesLines
2020-11-13Localize date in the "Added on" tooltip in the list of billsBaptiste Jonglez1-1/+1
2020-05-30Rename see to show (#638)Glandos1-1/+1
2020-05-21Replace currencyformat_nc with currency filter (#625)Glandos1-1/+1
2020-05-21Add a unified balance table for all sidebar pages (#618)Glandos1-25/+1
2020-05-07Improve currencies (#604)Glandos1-11/+8
- 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-05-07Integrate illustrations as a showcase (#544)Jojo1441-3/+9
Integrate some custom graphics, and a whole comics explanation, only in French for now. Fix #363
2020-04-29Feature/currencies (#541)dark0dave1-2/+21
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-02-20Paginate the list of bills (#480)zorun1-2/+26
We display 100 bills on each page. We only show previous/next buttons (at the top of the view) and the list of pages (at the bottom) if there are more than one pages. This uses built-in pagination support from Flask-SQLAlchemy: https://flask-sqlalchemy.palletsprojects.com/en/2.x/api/#flask_sqlalchemy.BaseQuery.paginate https://flask-sqlalchemy.palletsprojects.com/en/2.x/api/#flask_sqlalchemy.Pagination
2019-11-01prevent bill cancellation when cancelling autocomplete (#506)Tom Biju1-1/+1
2019-10-19Remove jQuery datepicker.Alexis M1-10/+0
We don't need this anymore because all major browser now have implemented that feature on the browser itself. Closes #221.
2019-10-19Fix the "and add a new one" button.Alexis M1-1/+1
2019-10-03feat: Optional field 'external link' in bill form.Leo Mouyna1-0/+3
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-09-30Add more human "for who?" description.Adrien CLERC1-1/+7
The limit for displaying "Everyone but …" instead of the ower's list is completely empirical.
2019-09-06bill list: add placeholder and disable add bill when no membersBrice Maron1-28/+49
2019-08-26Add some spacing when displaying « list empty ».Alexis M1-1/+1
2019-08-26Rework invite people to projectBrice Maron1-32/+41
2019-07-27Remove Added on column from bill list.Brice Maron1-3/+7
to avoid breaking anyone's workflow, i've instead use a tooltip to display the creation date. fix #418
2019-07-25Improve usability specially for small screenBrice Maron1-2/+2
- 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-12-25Add bill.creation_date field (#327)Lucas Verney1-1/+2
2017-12-21Replace some CSS by some JS (#288)JocelynDelalande1-13/+0
2017-12-15Use token based auth in invitation e-mails (#280)0livd1-1/+1
* Use token based auth in invitation e-mails Invitation e-mails no longer contain the clear text project password * Skip invite page after project creation - Replace ``The project identifier is demo, remember it!`` by ``Invite other people to join this project!`` (linking to the invite page) - Encourage users to share the project password via other communication means in the reminder email
2017-08-20Fix misplaced datepicker configuration (#258)0livd1-0/+7
Bootstrap-datepicker is only included in the list_bills template but its configuration was living in the layout template, leading to a javascript error on every page except list_bills. Fixes #256
2017-07-07Absolute imports & some other improvements (#243)Alexis Metaireau1-0/+128
* 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.