aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/layout.html
AgeCommit message (Collapse)AuthorFilesLines
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.