templates/partials/notes.html.twig line 1

Open in your IDE?
  1. {% embed 'includes/details.html.twig' with {
  2.     summary: 'notes.title'|trans,
  3.     id: 'storyteller-notes'
  4. } %}
  5.     {% block body %}
  6.     <label for="st-notes">{{ 'notes.label'|trans }}</label>
  7.     <textarea name="st-notes" id="st-notes" class="input input--tall"></textarea>
  8.     <p><button type="button" id="clear-st-notes" class="button button--warning" data-warning="{{ 'notes.clear_warning'|trans|e('html') }}">{{ 'notes.clear'|trans }}</button></p>
  9.     {% endblock %}
  10. {% endembed %}