mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 22:43:49 +08:00
21 lines
608 B
Handlebars
21 lines
608 B
Handlebars
<div>
|
|
{{#d-modal-body rawTitle=(i18n "admin.user.merge.confirmation.title" username=username)}}
|
|
<p>{{html-safe (i18n "admin.user.merge.confirmation.description" username=username targetUsername=targetUsername 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=mergeDisabled
|
|
translatedLabel=mergeButtonText
|
|
}}
|
|
{{d-button
|
|
action=(action "close")
|
|
label="admin.user.merge.confirmation.cancel"
|
|
}}
|
|
</div>
|
|
</div>
|