mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
21 lines
622 B
Handlebars
21 lines
622 B
Handlebars
|
<div>
|
||
|
{{#d-modal-body rawTitle=(i18n "admin.user.delete_posts.confirmation.title" username=username)}}
|
||
|
<p>{{html-safe (i18n "admin.user.delete_posts.confirmation.description" username=username post_count=postCount text=text)}}</p>
|
||
|
{{input type="text" value=value}}
|
||
|
{{/d-modal-body}}
|
||
|
|
||
|
<div class="modal-footer">
|
||
|
{{d-button
|
||
|
class="btn-danger"
|
||
|
action=(action "confirm")
|
||
|
icon="trash-alt"
|
||
|
disabled=deleteDisabled
|
||
|
translatedLabel=deleteButtonText
|
||
|
}}
|
||
|
{{d-button
|
||
|
action=(action "close")
|
||
|
label="admin.user.delete_posts.confirmation.cancel"
|
||
|
}}
|
||
|
</div>
|
||
|
</div>
|