aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/static
AgeCommit message (Collapse)AuthorFilesLines
2020-02-20Align tables in statistics (#535)Glandos1-0/+8
* Align tables in statistics The table in sidebar is now aligned with the one in content, to avoid redundant informations. All tables are back to normal on small devices. * fix test * run black on tests
2020-02-20Paginate the list of bills (#480)zorun1-0/+9
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
2020-02-09Initial montly expenses (#526)Edwin Smulders1-1/+8
2019-10-19Remove jQuery datepicker.Alexis M4-2805/+0
We don't need this anymore because all major browser now have implemented that feature on the browser itself. Closes #221.
2019-10-17Prettify cssJosé Antonio de la Torre1-16/+123
2019-10-17Added support to split messages #133José Antonio de la Torre3-0/+398
2019-10-03feat: Optional field 'external link' in bill form.Leo Mouyna2-8/+11
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-06bill list: add placeholder and disable add bill when no membersBrice Maron3-1/+19
2019-09-02use zopflipng to the max to recompress pngAdrien CLERC5-0/+0
2019-08-26Rework invite people to projectBrice Maron2-8/+23
2019-08-26Move export form to linksBrice Maron3-0/+7
2019-08-18add homepage designBrice Maron1-6/+19
2019-08-18fix flash messages positionBrice Maron1-1/+1
2019-08-18Add project switcher on login page if already loggedBrice Maron3-1/+13
2019-08-18Add footer with linksBrice Maron6-14/+101
2019-08-18Arrange navbar items by functionsBrice Maron4-0/+14
2019-07-27Remove Added on column from bill list.Brice Maron1-0/+5
to avoid breaking anyone's workflow, i've instead use a tooltip to display the creation date. fix #418
2019-07-26remove console logBrice Maron1-2/+1
2019-07-25prettier the css fileBrice Maron1-145/+194
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
2019-07-25Cleanup some unused css rulesBrice Maron1-13/+1
2019-07-23bump bootstrap to latest stableBrice Maron2-10/+11
2018-09-03Underline actions links on hover. (#377)Alexis Metaireau1-0/+4
Fix #260
2018-09-03Simplify a JS function. (#371)Alexis Metaireau1-18/+7
2018-08-11Add a favicon.ico route and logo. (#381)Alexis Metaireau1-0/+0
Might fix #255
2018-01-26Display sidebar scroll-bar only if requiredJocelyn Delalande1-1/+2
This fix a regression from #316 (scrollbar was displayed all the time). Note that the padding-bottom value is totally empiric, but proved OK on my Fx and Chrome instances + some responsive tests. There might be finer solutions, feel free :-).
2018-01-25Make sidebar scrollable (#316)Richard Coates1-0/+1
* Make sidebar scrollable Make sidebar scrollable. * Update CHANGELOG.rst Fixes #318
2017-12-27Position flash messages with CSS rather than JS (#292)JocelynDelalande1-1/+6
Visual result is exactly the same, but less black magic :-).
2017-12-21Replace some CSS by some JS (#288)JocelynDelalande1-1/+3
2017-09-04Enhance the dashboard. (#262)0livd1-0/+24
* Update to a more flexible admin authentication * Admin can now access any project * Add delete and edit options in the dashboard * Add a link to the dashboard in the nav bar This is a rework of the changes proposed by @Olivd, so they can apply on top of the latest master without trouble. All credit goes to him for the code.
2017-07-07Absolute imports & some other improvements (#243)Alexis Metaireau24-0/+3716
* 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.