2022-02-20 04:18:25 +09:00
|
|
|
{% import '/cards/macros/note/factory.html.twig' as NoteFactory %}
|
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-20 04:18:25 +09:00
|
|
|
{% set args = { 'type': 'vanilla_compact', 'note': note } %}
|
|
|
|
{{ NoteFactory.constructor(args) }}
|
2021-04-30 09:51:59 +09:00
|
|
|
{% endfor %}
|
2021-09-17 00:27:28 +09:00
|
|
|
</section>
|