mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 04:33:40 +08:00
14 lines
417 B
Handlebars
14 lines
417 B
Handlebars
|
<DModal
|
||
|
@title={{i18n "admin.user.delete_posts.progress.title"}}
|
||
|
@closeModal={{@closeModal}}
|
||
|
class="admin-delete-user-posts-progress-modal"
|
||
|
@flash={{this.flash}}
|
||
|
@dismissable={{false}}
|
||
|
>
|
||
|
<:body>
|
||
|
<p>{{i18n "admin.user.delete_posts.progress.description"}}</p>
|
||
|
<div class="progress-bar">
|
||
|
<span style={{html-safe (concat "width: " this.deletedPercentage "%")}} />
|
||
|
</div>
|
||
|
</:body>
|
||
|
</DModal>
|