2022-02-19 19:18:25 +00:00
|
|
|
{% import '/cards/macros/note/factory.html.twig' as NoteFactory %}
|
2021-11-23 22:54:49 +00:00
|
|
|
|
2022-01-19 23:54:45 +00:00
|
|
|
<section class="frame-section frame-section-padding">
|
2021-09-16 16:27:28 +01:00
|
|
|
<div class="section-title">
|
2022-01-27 01:13:18 +00:00
|
|
|
<span class="heading-no-margin">
|
2021-12-25 17:31:16 +00:00
|
|
|
{{ 'Notes related' | trans }}
|
2022-01-27 01:13:18 +00:00
|
|
|
</span>
|
2021-09-16 16:27:28 +01:00
|
|
|
</div>
|
|
|
|
|
2021-04-30 01:51:59 +01:00
|
|
|
{% for note in related_notes %}
|
2022-02-19 19:18:25 +00:00
|
|
|
{% set args = { 'type': 'vanilla_compact', 'note': note } %}
|
|
|
|
{{ NoteFactory.constructor(args) }}
|
2021-04-30 01:51:59 +01:00
|
|
|
{% endfor %}
|
2021-09-16 16:27:28 +01:00
|
|
|
</section>
|