blob: 5e2a398260b997dfb57b597c71d192828afce720 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "ishtar/sheet_source.html" %}
{% load i18n window_field link_to_window %}
{% block head_sheet %}
{{block.super}}
<h1>{% trans "Operation source"%}</h1>
{% endblock %}
{% block export %}
<div class='tool'>{%trans "Export as:"%} <a href='{% url show-operationsource item.pk "odt" %}'>{%trans "OpenOffice.org file"%}</a>, <a href='{% url show-operationsource item.pk "pdf" %}'>{%trans "PDF file"%}</a></div>
{% endblock %}
{% block related %}
{% field "Related operation" item.owner '' item.owner|link_to_window %}
{% endblock %}
|