mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
d87a0216bb
* FEATURE: add penalty history when silencing a user Display penalty history (last 6 months) when silencing/suspending a user * FEATURE: allow default penalty values to be chosen Adds a site setting that designates default penalty values in hours. Silence/suspend modals will auto-fill in the default values, but otherwise will still allow moderators to pick and overwrite values as normal. First silence/suspend: first value Second silence/suspend: second value etc. Penalty counts are forgiven at the same rate as tl3 promotion requirements do. Co-authored-by: jjaffeux <j.jaffeux@gmail.com>
45 lines
1.1 KiB
Handlebars
45 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}}
|
|
|
|
{{admin-penalty-history user=user}}
|
|
|
|
<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>
|