diff options
| author | Glandos <bugs-github@antipoul.fr> | 2020-05-30 14:36:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-30 14:36:50 +0200 |
| commit | 4c8b90b8cc5e3fa8fe15b17b4aea64c6bf3f8561 (patch) | |
| tree | 7df738bf373f07151659b059b6dcf2c70966fb3b /ihatemoney/templates | |
| parent | 08e176a27c5c7b4202663cf404c1ca50d288323c (diff) | |
| download | ihatemoney-mirror-4c8b90b8cc5e3fa8fe15b17b4aea64c6bf3f8561.zip ihatemoney-mirror-4c8b90b8cc5e3fa8fe15b17b4aea64c6bf3f8561.tar.gz ihatemoney-mirror-4c8b90b8cc5e3fa8fe15b17b4aea64c6bf3f8561.tar.bz2 | |
Rename see to show (#638)
Diffstat (limited to 'ihatemoney/templates')
| -rw-r--r-- | ihatemoney/templates/dashboard.html | 2 | ||||
| -rw-r--r-- | ihatemoney/templates/list_bills.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ihatemoney/templates/dashboard.html b/ihatemoney/templates/dashboard.html index b77a0ba..d9c150c 100644 --- a/ihatemoney/templates/dashboard.html +++ b/ihatemoney/templates/dashboard.html @@ -16,7 +16,7 @@ <td class="project-actions"> <a class="edit" href="{{ url_for(".edit_project", project_id=project.id) }}" title="{{ _("edit") }}">{{ _('edit') }}</a> <a class="delete" href="{{ url_for(".delete_project", project_id=project.id) }}" title="{{ _("delete") }}">{{ _('delete') }}</a> - <a class="see" href="{{ url_for(".list_bills", project_id=project.id) }}" title="{{ _("see") }}">{{ _('see') }}</a> + <a class="show" href="{{ url_for(".list_bills", project_id=project.id) }}" title="{{ _("show") }}">{{ _('show') }}</a> </td> </tr> {% endfor %} diff --git a/ihatemoney/templates/list_bills.html b/ihatemoney/templates/list_bills.html index 487e70e..12c5072 100644 --- a/ihatemoney/templates/list_bills.html +++ b/ihatemoney/templates/list_bills.html @@ -133,7 +133,7 @@ <a class="edit" href="{{ url_for(".edit_bill", bill_id=bill.id) }}" title="{{ _("edit") }}">{{ _('edit') }}</a> <a class="delete" href="{{ url_for(".delete_bill", bill_id=bill.id) }}" title="{{ _("delete") }}">{{ _('delete') }}</a> {% if bill.external_link %} - <a class="see" href="{{ bill.external_link }}" ref="noopener" target="_blank" title="{{ _("see") }}">{{ _('see') }} </a> + <a class="show" href="{{ bill.external_link }}" ref="noopener" target="_blank" title="{{ _("show") }}">{{ _('show') }} </a> {% endif %} </td> </tr> |
