discourse/app/assets/javascripts/admin/addon/templates/modal/admin-silence-user.hbs
Bianca Nenciu d2116f0029
FIX: Show error message if user is already silenced or suspended (#10988)
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.
2020-11-03 17:38:56 +02:00

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>