mute.html.twig 597 B

12345678910111213141516171819202122
  1. {% extends 'collection/notes.html.twig' %}
  2. {% block body %}
  3. <div class="frame-section frame-section-padding">
  4. {% if is_muted %}
  5. <span class="frame-section-padding alert">
  6. <label>Do you wish to <b>unmute</b> this conversation?</label>
  7. {{ form(form) }}
  8. </span>
  9. {% else %}
  10. <span class="frame-section-padding alert">
  11. <label>Do you wish to <b>mute</b> this conversation?</label>
  12. {{ form(form) }}
  13. </span>
  14. {% endif %}
  15. <hr>
  16. {{ parent() }}
  17. </div>
  18. {% endblock body %}