2021-11-23 22:54:49 +00:00
|
|
|
{% import '/cards/note/view.html.twig' as noteView %}
|
|
|
|
|
2021-12-23 21:29:46 +00:00
|
|
|
<section class="section-widget section-padding">
|
2021-09-16 16:27:28 +01:00
|
|
|
<div class="section-title">
|
2021-12-25 17:31:16 +00:00
|
|
|
<h2 class="heading-no-margin">
|
|
|
|
{{ 'Notes related' | trans }}
|
|
|
|
</h2>
|
2021-09-16 16:27:28 +01:00
|
|
|
</div>
|
|
|
|
|
2021-04-30 01:51:59 +01:00
|
|
|
{% for note in related_notes %}
|
2021-11-23 22:54:49 +00:00
|
|
|
{{ noteView.macro_note_minimal(note) }}
|
2021-04-30 01:51:59 +01:00
|
|
|
{% endfor %}
|
2021-09-16 16:27:28 +01:00
|
|
|
</section>
|