aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates
AgeCommit message (Collapse)AuthorFilesLines
2019-09-06bill list: add placeholder and disable add bill when no membersBrice Maron2-32/+53
2019-09-02fix: add table layout for sharing optionsBrice Maron1-22/+38
ref #451
2019-08-26Add some spacing when displaying « list empty ».Alexis M1-1/+1
2019-08-26Rework invite people to projectBrice Maron3-46/+66
2019-08-26Move export form to linksBrice Maron1-8/+44
2019-08-18add homepage designBrice Maron2-46/+79
2019-08-18Add project switcher on login page if already loggedBrice Maron1-34/+43
2019-08-18Add footer with linksBrice Maron2-84/+109
2019-08-18Arrange navbar items by functionsBrice Maron1-35/+51
2019-07-27Remove Added on column from bill list.Brice Maron2-4/+9
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 Maron4-18/+34
- 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-2/+2
2019-07-23bump bootstrap to latest stableBrice Maron1-1/+1
2018-12-25Add bill.creation_date field (#327)Lucas Verney1-1/+2
2018-09-03Fix form error on already existing participant. (#370)Alexis Metaireau1-0/+1
Fixes #350
2018-09-03Sort members alphabetically in the new bill form. (#374)Alexis Metaireau1-1/+1
Fixes #333
2018-09-03Add a handler when pages aren't found. (#379)Alexis Metaireau2-11/+24
Fixes #356
2018-09-03Fix error escaping; (#388)Benjamin Bouvier1-1/+1
2018-09-03Simplify a JS function. (#371)Alexis Metaireau1-1/+1
2018-02-07Change statistics data structureJocelyn Delalande1-10/+9
Clearer data structure, and simpler template This commit has a side effect: sidebar now hides disabled members. IMHO, the disabled members should either be hidden or shown consistently between sidebar and central table. Previous status was: shown in sidebar (if balance ≠ 0) and hidden in central table.
2018-02-06Remove dead codeJocelyn Delalande1-1/+1
2018-02-04Remove unused CSS odd/even classesJocelyn Delalande3-3/+3
That was forgotten from fe39258630e55d4a3e1297a01a1c8fd39bad3a4e
2018-01-05Include all .j2 files in the packaged version.Alexis Métaireau6-7/+7
I've also renamed the templates to *.j2 in order to make things clearer to others. Having extensions with the name of the locale doesn't seem to be a good practice, and would need us to add the locales in the MANIFEST file each time we add one. Fix #305
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-12-21Replace some CSS by some JS (#288)JocelynDelalande1-13/+0
2017-12-21Use hashed passwords for projects (#286)0livd2-4/+2
- Remove all occurences of clear text project passwords. - Migrate the database to hash the previously stored passwords. Closes #232
2017-12-15Use token based auth in invitation e-mails (#280)0livd7-14/+21
* 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-10-26Use token based auth to reset passwords (#269)0livd6-9/+29
Send a mail containing a password reset token link instead of sending a clear text password. Ref #232
2017-09-04Enhance the dashboard. (#262)0livd5-12/+27
* 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)0livd2-0/+36
2017-08-20Fix misplaced datepicker configuration (#258)0livd2-7/+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 Metaireau24-0/+701
* 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.