Changed the "settings" button to "edit" in the account, currency, and journal entry detail pages.

This commit is contained in:
依瑪貓 2023-03-21 23:10:33 +08:00
parent e615ad2690
commit 871a5fd1d8
3 changed files with 6 additions and 6 deletions

View File

@ -32,8 +32,8 @@ First written: 2023/1/31
</a>
{% if accounting_can_edit() %}
<a class="btn btn-primary d-none d-md-inline" href="{{ url_for("accounting.account.edit", account=obj)|accounting_inherit_next }}">
<i class="fa-solid fa-gear"></i>
<span class="d-none d-md-inline">{{ A_("Settings") }}</span>
<i class="fa-solid fa-pen-to-square"></i>
{{ A_("Edit") }}
</a>
{% endif %}
<a class="btn btn-primary" href="{{ url_for("accounting.account.order", base=obj.base)|accounting_append_next }}">

View File

@ -32,8 +32,8 @@ First written: 2023/2/6
</a>
{% if accounting_can_edit() %}
<a class="btn btn-primary d-none d-md-inline" href="{{ url_for("accounting.currency.edit", currency=obj)|accounting_inherit_next }}">
<i class="fa-solid fa-gear"></i>
<span class="d-none d-md-inline">{{ A_("Settings") }}</span>
<i class="fa-solid fa-pen-to-square"></i>
{{ A_("Edit") }}
</a>
{% endif %}
{% if accounting_can_edit() %}

View File

@ -32,8 +32,8 @@ First written: 2023/2/26
</a>
{% if accounting_can_edit() %}
<a class="btn btn-primary d-none d-md-inline" href="{{ url_for("accounting.journal-entry.edit", journal_entry=obj)|accounting_inherit_next }}">
<i class="fa-solid fa-gear"></i>
<span class="d-none d-md-inline">{{ A_("Settings") }}</span>
<i class="fa-solid fa-pen-to-square"></i>
{{ A_("Edit") }}
</a>
{% endif %}
<a class="btn btn-primary" href="{{ url_for("accounting.journal-entry.order", journal_entry_date=obj.date)|accounting_append_next }}">