attachmentRelatedNotes.html.twig 359 B

12345678910111213
  1. {% import '/cards/note/view.html.twig' as noteView %}
  2. <section class="frame-section frame-section-padding">
  3. <div class="section-title">
  4. <h2 class="heading-no-margin">
  5. {{ 'Notes related' | trans }}
  6. </h2>
  7. </div>
  8. {% for note in related_notes %}
  9. {{ noteView.macro_note_minimal(note) }}
  10. {% endfor %}
  11. </section>