aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/layout.html
AgeCommit message (Collapse)AuthorFilesLines
2019-09-06bill list: add placeholder and disable add bill when no membersBrice Maron1-4/+4
2019-08-18add homepage designBrice Maron1-2/+2
2019-08-18Add project switcher on login page if already loggedBrice Maron1-34/+43
2019-08-18Add footer with linksBrice Maron1-83/+108
2019-08-18Arrange navbar items by functionsBrice Maron1-35/+51
2019-07-27Remove Added on column from bill list.Brice Maron1-1/+2
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-11/+25
- 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-23bump bootstrap to latest stableBrice Maron1-1/+1
2018-09-03Add a handler when pages aren't found. (#379)Alexis Metaireau1-11/+11
Fixes #356
2017-12-27Position flash messages with CSS rather than JS (#292)JocelynDelalande1-5/+5
Visual result is exactly the same, but less black magic :-).
2017-12-23Remove un-needed sidebar block (#291)JocelynDelalande1-1/+0
{% block sidebar %} is used by sidebar_table_layout.html and its children, not by layout.html nor its direct children. This is dead code removal.
2017-09-04Enhance the dashboard. (#262)0livd1-0/+3
* 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-08-21Add a statistics tab (#257)0livd1-0/+1
2017-08-20Fix misplaced datepicker configuration (#258)0livd1-7/+0
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/+98
* 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.