Allow club staff to delete their sellings

This commit is contained in:
Skia
2016-09-22 12:52:15 +02:00
parent ae6a613f9a
commit ffd4dac2e2
3 changed files with 5 additions and 1 deletions

View File

@ -64,7 +64,7 @@
<td>{{ i.quantity * i.unit_price }} €</td>
<td>{{ i.get_payment_method_display() }}</td>
{% if i.is_owned_by(user) %}
<td><a href="{{ url('counter:selling_delete', selling_id=i.id) }}">Delete</a></td>
<td><a href="{{ url('counter:selling_delete', selling_id=i.id) }}">{% trans %}Delete{% endtrans %}</a></td>
{% endif %}
</tr>
{% endfor %}