Remove last New ...

This commit is contained in:
Edgar P. Burkhart 2023-04-20 15:53:55 +02:00
parent 442b36055a
commit dfe89fb716
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
4 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
{% extends "main/form/base.html" %}
{% load i18n %}
{% block title_new %}
{% translate "Create invoice" %}
{% endblock %}

View File

@ -34,7 +34,7 @@
<tfoot>
<tr>
<td colspan="3">
<a href="{% url "new_invoice" transaction.pk %}">{% translate "New invoice" %}</a>
<a href="{% url "new_invoice" transaction.pk %}">{% translate "Create invoice" %}</a>
</td>
</tr>
</tfoot>

View File

@ -2,7 +2,7 @@
{% load i18n %}
{% if new_snapshot_url %}
<p>
<a href="{{ new_snapshot_url }}">{% translate "New statement" %}</a>
<a href="{{ new_snapshot_url }}">{% translate "Create statement" %}</a>
</p>
{% endif %}
<div id="snapshots" class="table">

View File

@ -2,7 +2,7 @@
{% load i18n %}
{% if new_transaction_url %}
<p>
<a href="{{ new_transaction_url }}">{% translate "New transaction" %}</a>
<a href="{{ new_transaction_url }}">{% translate "Create transaction" %}</a>
</p>
{% endif %}
<div id="transactions" class="table">