Remove last New ...
This commit is contained in:
parent
442b36055a
commit
dfe89fb716
4 changed files with 4 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
{% extends "main/form/base.html" %}
|
||||
{% load i18n %}
|
||||
{% block title_new %}
|
||||
{% translate "Create invoice" %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
Loading…
Reference in a new issue