mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
d2116f0029
Users could be silenced or suspended by two staff members at the same time and would not be aware of it. This commit shows an error message if another penalty has been applied.
43 lines
1.1 KiB
Handlebars
43 lines
1.1 KiB
Handlebars
{{#d-modal-body title="admin.user.silence_modal_title"}}
|
|
{{#conditional-loading-spinner condition=loadingUser}}
|
|
|
|
{{#if errorMessage}}
|
|
<div class="alert alert-error">{{errorMessage}}</div>
|
|
{{/if}}
|
|
|
|
<div class="until-controls">
|
|
<label>
|
|
{{future-date-input
|
|
class="silence-until"
|
|
label="admin.user.silence_duration"
|
|
includeFarFuture=true
|
|
clearable=false
|
|
input=silenceUntil
|
|
onChangeInput=(action (mut silenceUntil))
|
|
}}
|
|
</label>
|
|
</div>
|
|
|
|
{{silence-details reason=reason message=message}}
|
|
{{#if postId}}
|
|
{{penalty-post-action
|
|
postId=postId
|
|
postAction=postAction
|
|
postEdit=postEdit}}
|
|
{{/if}}
|
|
|
|
{{/conditional-loading-spinner}}
|
|
|
|
{{/d-modal-body}}
|
|
|
|
<div class="modal-footer">
|
|
{{d-button
|
|
class="btn-danger perform-silence"
|
|
action=(action "silence")
|
|
disabled=submitDisabled
|
|
icon="microphone-slash"
|
|
label="admin.user.silence"}}
|
|
{{d-modal-cancel close=(route-action "closeModal")}}
|
|
{{conditional-loading-spinner condition=loading size="small"}}
|
|
</div>
|