2022-02-07 06:37:04 +09:00
|
|
|
{% import '/cards/macros/note.html.twig' as noteView %}
|
2021-11-24 07:54:49 +09:00
|
|
|
|
2022-01-20 08:54:45 +09:00
|
|
|
<section class="frame-section frame-section-padding">
|
2021-09-17 00:27:28 +09:00
|
|
|
<div class="section-title">
|
2022-01-27 10:13:18 +09:00
|
|
|
<span class="heading-no-margin">
|
2021-12-26 02:31:16 +09:00
|
|
|
{{ 'Notes related' | trans }}
|
2022-01-27 10:13:18 +09:00
|
|
|
</span>
|
2021-09-17 00:27:28 +09:00
|
|
|
</div>
|
|
|
|
|
2021-04-30 09:51:59 +09:00
|
|
|
{% for note in related_notes %}
|
2022-02-07 06:37:04 +09:00
|
|
|
{{ noteView.note_compact(note) }}
|
2021-04-30 09:51:59 +09:00
|
|
|
{% endfor %}
|
2021-09-17 00:27:28 +09:00
|
|
|
</section>
|