mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-15 17:01:49 +02:00
Compare commits
3 commits
46503ac416
...
c97356cba7
Author | SHA1 | Date | |
---|---|---|---|
c97356cba7 | |||
4f9cad88bd | |||
![]() |
c2db991ffd |
4 changed files with 10 additions and 6 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -2,9 +2,9 @@ name: CI
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master', 'stable-*' ]
|
||||
branches: [ 'main', 'stable-*' ]
|
||||
pull_request:
|
||||
branches: [ 'master', 'stable-*' ]
|
||||
branches: [ 'main', 'stable-*' ]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
4
.github/workflows/dockerhub.yml
vendored
4
.github/workflows/dockerhub.yml
vendored
|
@ -3,9 +3,9 @@ name: Docker build
|
|||
on:
|
||||
push:
|
||||
tags: ['*']
|
||||
branches: [ 'master', 'stable-*' ]
|
||||
branches: [ 'main', 'stable-*' ]
|
||||
pull_request:
|
||||
branches: [ 'master', 'stable-*' ]
|
||||
branches: [ 'main', 'stable-*' ]
|
||||
|
||||
|
||||
jobs:
|
||||
|
|
|
@ -5,6 +5,10 @@ This document describes changes between each past release.
|
|||
## 6.2.0 (unreleased)
|
||||
|
||||
- Add support for python 3.12 (#757)
|
||||
- Migrate from setup.cfg to pyproject.toml (#1243)
|
||||
- Update to wtforms 3.1 (#1248)
|
||||
- Document [repository rules](https://ihatemoney.readthedocs.io/en/latest/contributing.html#repository-rules) (#1253)
|
||||
- Add "reimbursement" bills and allow to create them directly from the "Settle" page (#1290)
|
||||
- Remove support for python 3.7
|
||||
- Replace the black linter by ruff
|
||||
- Replace virtualenv and pip by uv
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</tr>
|
||||
</thead>
|
||||
{%- endif %}
|
||||
{%- for member in g.project.members | sort(attribute='name') if member.activated or balance[member.id]|round(2) != 0 %}
|
||||
{%- for member in g.project.members | sort(attribute='name') if member.activated or balance[member.id]|round(2)|abs >= 0.01 %}
|
||||
<tr id="bal-member-{{ member.id }}" action="{% if member.activated %}delete{% else %}reactivate{% endif %}">
|
||||
<td class="balance-name">{{ member.name }}
|
||||
{%- if show_weight -%}
|
||||
|
|
Loading…
Reference in a new issue