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:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ 'master', 'stable-*' ]
|
branches: [ 'main', 'stable-*' ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ 'master', 'stable-*' ]
|
branches: [ 'main', 'stable-*' ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
|
4
.github/workflows/dockerhub.yml
vendored
4
.github/workflows/dockerhub.yml
vendored
|
@ -3,9 +3,9 @@ name: Docker build
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags: ['*']
|
tags: ['*']
|
||||||
branches: [ 'master', 'stable-*' ]
|
branches: [ 'main', 'stable-*' ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ 'master', 'stable-*' ]
|
branches: [ 'main', 'stable-*' ]
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
{%- endif %}
|
{%- 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 %}">
|
<tr id="bal-member-{{ member.id }}" action="{% if member.activated %}delete{% else %}reactivate{% endif %}">
|
||||||
<td class="balance-name">{{ member.name }}
|
<td class="balance-name">{{ member.name }}
|
||||||
{%- if show_weight -%}
|
{%- if show_weight -%}
|
||||||
|
@ -61,4 +61,4 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{# It must be set outside of the block definition #}
|
{# It must be set outside of the block definition #}
|
||||||
{% set messages_shown = True %}
|
{% set messages_shown = True %}
|
||||||
|
|
Loading…
Reference in a new issue