2020-04-22 04:37:51 -04:00
|
|
|
<div>
|
2022-07-05 13:41:31 -04:00
|
|
|
<DModalBody
|
|
|
|
@rawTitle={{i18n
|
|
|
|
"admin.user.merge.confirmation.title"
|
|
|
|
username=this.username
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<p>{{html-safe
|
|
|
|
(i18n
|
|
|
|
"admin.user.merge.confirmation.description"
|
|
|
|
username=this.username
|
|
|
|
targetUsername=this.targetUsername
|
|
|
|
text=this.text
|
2022-12-28 07:28:11 -05:00
|
|
|
)
|
2022-07-05 13:41:31 -04:00
|
|
|
}}</p>
|
|
|
|
<Input @type="text" @value={{this.value}} />
|
2022-06-30 06:30:50 -04:00
|
|
|
</DModalBody>
|
2020-04-22 04:37:51 -04:00
|
|
|
|
|
|
|
<div class="modal-footer">
|
2022-07-05 13:41:31 -04:00
|
|
|
<DButton
|
|
|
|
@class="btn-danger"
|
|
|
|
@action={{action "confirm"}}
|
|
|
|
@icon="trash-alt"
|
|
|
|
@disabled={{this.mergeDisabled}}
|
|
|
|
@translatedLabel={{this.mergeButtonText}}
|
2022-06-30 06:30:50 -04:00
|
|
|
/>
|
|
|
|
<DButton
|
|
|
|
@action={{action "close"}}
|
|
|
|
@label="admin.user.merge.confirmation.cancel"
|
2022-12-28 07:28:11 -05:00
|
|
|
/>
|
2020-04-22 04:37:51 -04:00
|
|
|
</div>
|
|
|
|
</div>
|