blob: e18cb553229d2e91da3775a83c64f2d2236690d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% load i18n l10n %}
{% if display_relations %}
<h3>{% trans "Relations"%}</h3>
{% for rel in item.right_relations.all %}
{% ifchanged rel.relation_type %}
{% if forloop.counter0 %}</div>{% endif %}
<h4>{{rel.relation_type}}</h4>
<div class="row">{% endifchanged %}
<div class="col-12">
<a href="#" onclick="load_window('{{relation_url}}{{rel.right_record.pk|unlocalize}}/');" class="display_details">
<i class="fa fa-info-circle" aria-hidden="true"></i>
</a> {{rel.right_record}}
</div>
{% if forloop.last %}
</div>{% endif %}
{% endfor %}
{% else %}
<div class="alert alert-info" role="alert">
<i class="fa fa-info-circle" aria-hidden="true"></i>
{% trans "No relations" %}
</div>
{% endif %}
|