mirror of https://github.com/zulip/zulip.git
17 lines
1.0 KiB
Handlebars
17 lines
1.0 KiB
Handlebars
<div id="delete_topic_modal" class="modal modal-bg hide fade new-style" tabindex="-1" role="dialog" aria-labelledby="delete_topic_modal_label" aria-hidden="true">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
|
|
<h3 id="delete_topic_modal_label">{{t "Delete topic" }} </h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>{{#tr this}}Are you sure you want to delete all messages in <b>__topic_name__</b>?{{/tr}}</p>
|
|
<p>{{t "We recommend against deleting topics unless needed for security reasons or managing abuse. Deleted messages can be confusing for users who may later visit the topic via notifications." }}</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="button" data-dismiss="modal">{{t "Cancel" }}</button>
|
|
<button class="button btn-danger rounded" id="do_delete_topic_button">
|
|
{{t "Delete messages" }}
|
|
</button>
|
|
</div>
|
|
</div>
|