You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
538 B
12 lines
538 B
{% extends "docs/_base/base_list.html" %}
|
|
|
|
{% block table_header_extra %}
|
|
<th>Оплачен?</th>
|
|
<th>Закрыт?</th>
|
|
{% endblock %}
|
|
|
|
{% block table_obj_cells_extra %}
|
|
<td><a href="#" class="toggle_doc_status doc_status{{ obj.paid_status }}" data-doctype="invoice" data-attr="paid_status">{{ obj.get_paid_status_display }}</a></td>
|
|
<td><a href="#" class="toggle_doc_status doc_status{{ obj.closed_status }}" data-doctype="invoice" data-attr="closed_status">{{ obj.get_closed_status_display }}</a></td>
|
|
{% endblock %}
|
|
|
|
|