mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-16 17:21:50 +02:00
Compare commits
4 commits
fffe09718c
...
aa0d8b6840
Author | SHA1 | Date | |
---|---|---|---|
![]() |
aa0d8b6840 | ||
![]() |
05742347c3 | ||
bd689f931a | |||
67938eabbc |
2 changed files with 4 additions and 3 deletions
|
@ -236,7 +236,8 @@
|
|||
{{ input(form.weight) }}
|
||||
</fieldset>
|
||||
<div class="actions">
|
||||
{{ form.submit(class="btn btn-primary") }}
|
||||
<button class="btn btn-secondary input-group-addon" type="submit">{{ _("Save") }}</button>
|
||||
<a href="{{ url_for(".list_bills") }}" class="btn btn-outline-secondary"> {{_("Cancel") }} </a>
|
||||
</div>
|
||||
{% endmacro %}
|
||||
|
||||
|
|
|
@ -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