mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-15 17:01:49 +02:00
Compare commits
3 commits
f395fb28bb
...
73c910c2a4
Author | SHA1 | Date | |
---|---|---|---|
73c910c2a4 | |||
c97356cba7 | |||
4f9cad88bd |
3 changed files with 6 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:
|
||||
|
|
|
@ -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