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.
27 lines
1.3 KiB
27 lines
1.3 KiB
|
|
{% url url_prefix|add:'copy' id=obj.pk as url_copy %}
|
|
{% url url_prefix|add:'img' id=obj.pk as url_img %}
|
|
{% url url_prefix|add:'pdf' id=obj.pk as url_pdf %}
|
|
{% url url_prefix|add:'xls' id=obj.pk as url_xls %}
|
|
|
|
{% url 'docs_aktrabot_add_by_invoice' invoice_id=obj.pk as url_aktrabot_by_invoice %}
|
|
{% url 'docs_nakladn_add_by_invoice' invoice_id=obj.pk as url_nakladn_by_invoice %}
|
|
{% url 'docs_faktura_add_by_invoice' invoice_id=obj.pk as url_faktura_by_invoice %}
|
|
|
|
<div class="doc-panel-header">Скачать документ</div>
|
|
|
|
{% if not images %}
|
|
<a class="doc look-link" href="{{ url_img }}">
|
|
Предпросмотр {{ padeji.rodit }}</a>
|
|
{% endif %}
|
|
<div class="clear"></div>
|
|
<a class="doc pdf-link left" href="{{ url_pdf }}">
|
|
Документ в PDF</a>
|
|
<a class="doc excel-link left" href="{{ url_xls }}">
|
|
Документ в Excel</a>
|
|
<div class="clear"></div>
|
|
|
|
<div class="doc-panel-header">Создать</div>
|
|
|
|
<a class="doc copy-link" href="{{ url_copy }}" title="Копию {{ padeji.rodit }}">Копию {{ padeji.rodit }}</a>
|
|
|
|
|