diff options
-rw-r--r-- | ishtar/templates/sheet_ope.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ishtar/templates/sheet_ope.html b/ishtar/templates/sheet_ope.html index 37ddece93..f59babb70 100644 --- a/ishtar/templates/sheet_ope.html +++ b/ishtar/templates/sheet_ope.html @@ -97,6 +97,27 @@ {% endfor %} </table> +<h3>{% trans "Documentation"%}</h3> +<table> + <caption>{%trans "Documents"%}</caption> + <tr> + <th>{% trans "Title" %}</th> + <th>{% trans "Type" %}</th> + <th>{% trans "Authors" %}</th> + <th>{% trans "Localisation" %}</th> + </tr> + {% for doc in item.doc.all %} + <tr> + <td>{{ doc.title }}</td> + <td class='string'>{{doc.type}}</td> + <td>{{ doc.author.all|join:", " }}</td> + <td>{{ doc.localisation }}</td> + </tr> + {% empty %} + <tr><td colspan="4" class='no_items'>{% trans "No document associated to this operation" %}</td></tr> + {% endfor %} +</table> + <h3>{% trans "Recording Units"%}</h3> <table> <caption>{%trans "Recording Units"%}</caption> |