zulip/static/templates/settings/deactivation_stream_modal.hbs

18 lines
1.1 KiB
Handlebars

<div id="deactivation_stream_modal" class="modal modal-bg hide fade new-style" tabindex="-1" role="dialog" aria-labelledby="deactivation_stream_modal_label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close close-modal-btn" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">&times;</span></button>
<h3 id="deactivation_stream_modal_label">
{{t "Archive stream" }} <span class="stream_name">{{stream_name}}</span>
{{> ../help_link_widget link="/help/archive-a-stream" }}
</h3>
</div>
<div class="modal-body">
Archiving stream <strong>{{stream_name}}</strong> <span>will immediately unsubscribe everyone. This action cannot be undone.</span>
<p><strong>{{t "Are you sure you want to archive this stream?" }}</strong></p>
</div>
<div class="modal-footer">
<button class="button rounded close-modal-btn" data-dismiss="modal">{{t "Cancel" }}</button>
<button class="button rounded btn-danger" id="do_deactivate_stream_button" data-stream-id="{{stream_id}}">{{t "Confirm" }}</button>
</div>
</div>