2022-01-13 17:47:47 +00:00
|
|
|
{% extends 'collection/notes.html.twig' %}
|
2022-01-01 10:31:10 +00:00
|
|
|
|
|
|
|
{% block body %}
|
2022-01-13 17:47:47 +00:00
|
|
|
<div class="section-widget section-padding">
|
|
|
|
{% if is_muted %}
|
|
|
|
<span class="section-padding alert">
|
|
|
|
<label>Do you wish to <b>unmute</b> this conversation?</label>
|
|
|
|
{{ form(form) }}
|
|
|
|
</span>
|
|
|
|
{% else %}
|
|
|
|
<span class="section-padding alert">
|
|
|
|
<label>Do you wish to <b>mute</b> this conversation?</label>
|
|
|
|
{{ form(form) }}
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
{{ parent() }}
|
|
|
|
</div>
|
2022-01-01 10:31:10 +00:00
|
|
|
{% endblock body %}
|