blob: 6d5c1f7044118b9c96735b02cac1599b186c8967 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% load i18n %}
<h4>{{caption}}</h4>
<div class='clean-table'>
<div class='clean-table-wrap'>
<table>
<tr>
<th>{% trans "Title" %}</th>
<th>{% trans "Type" %}</th>
<th>{% trans "Authors" %}</th>
<th>{% trans "Related to" %}</th>
<th>{% trans "Link" %}</th>
</tr>
{% for doc in data %}
<tr>
<td class='string'>{{ doc.title }}</td>
<td class='string'>{{doc.source_type}}</td>
<td class='string'>{{ doc.authors.all|join:", " }}</td>
<td class='string'><a href="#" onclick='load_window("{{doc.owner.show_url}}")'>{{doc.owner.short_label}}</a></td>
<td class='string'>{% if doc.associated_url %}<a href='{{doc.associated_url}}'>{% trans "Link"%}</a>{% endif %}</td>
</tr>
{% endfor %}
</table>
</div></div>
|