aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/layout.html
AgeCommit message (Collapse)AuthorFilesLines
2020-04-20Add Project History Page (#553)Andrew Dickinson1-0/+1
Co-Authored-By: Glandos <bugs-github@antipoul.fr> All project activity can be tracked, using SQLAlchemy-continuum. IP addresses can optionally be recorded.
2020-04-08merge settings and import to avoid clutter (#550)eMerzh1-1/+0
2020-03-06Bmatticus/feature/112 dashboard sorting (#538)bmatt1-0/+4
* Added DataTables for table sorting, pagination, and searching of bill_table for dashboard. Issue #112 * Moved datatables CSS/JS to dashboard to reduce loaded data throughout * Moved link back to proper place, in head tab, but added if to prevent loading CSS/JS for datatables outside of the dashboard. Also added eye icon to drill into list_billa API to be more consistent with the look and feel of the overall site. Co-authored-by: bmatt <bmatt@nuc01.attlocal.net>
2020-01-13Import previously exported json data (#518)Nicolas Vanvyve1-0/+1
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-17Added support to split messages #133José Antonio de la Torre1-0/+1
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.