Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% load wagtailcore_tags wagtailimages_tags %}
{% if related_documents or related_pages %}
<section class="related">
<div class="container">
<ul>
{% for related_document in related_documents %}
{% with document=related_document.document %}
<li>
<a href="{{ document.url }}">
<h2>
{% if related_document.title %}
{{ related_document.title }}
({{ document.file_extension }})
{% else %}
{{ document.filename }}
{% endif %}
</h2>
</a>
</li>
{% endwith %}
{% endfor %}
{% for related in related_pages %}
{# a related object links to the original page (related.source_page) and a related one (related.page) #}
{% if related.page.live %}
{% with specific_related_page=related.page.specific %}
<li>
<a href="{% pageurl specific_related_page %}">
{% if specific_related_page.listing_image %}
{% image specific_related_page.listing_image fill-450x300 %}
{% endif %}
<div>
<h2>
{{ specific_related_page.listing_title|default:specific_related_page.title }}
</h2>
{% if specific_related_page.listing_summary or specific_related_page.introduction %}
<p>{{ specific_related_page.listing_summary|default:specific_related_page.introduction }}</p>
{% endif %}
</div>
</a>
</li>
{% endwith %}
{% endif %}
{% endfor %}
</ul>
</div>
</section>
{% endif %}