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