SpamNoticer: add illegal checkbox to files
This commit is contained in:
parent
a45f3f34a3
commit
2c558908b6
|
@ -24,7 +24,7 @@
|
|||
<input class="ban-form-action--input" type="checkbox" name="checkbox-ban" id="checkbox-ban" checked>
|
||||
<label class="ban-form-action--label" for="checkbox-ban">Ban</label>
|
||||
|
||||
<input class="ban-form-action--input" type="checkbox" name="checkbox-delete" id="checkbox-delete" checked>
|
||||
<input class="ban-form-action--input" type="checkbox" name="checkbox-delete" id="checkbox-delete" {% if delete %}checked{% endif %}>
|
||||
<label class="ban-form-action--label" for="checkbox-delete">Delete</label>
|
||||
|
||||
<input class="ban-form-action--input" type="checkbox" name="checkbox-ban-content" id="checkbox-ban-content">
|
||||
|
|
|
@ -29,8 +29,10 @@
|
|||
{% endif %}
|
||||
)
|
||||
{% if spamnoticer %}
|
||||
<input class="ban_form--content_file_chkbox" type="checkbox" name="file_is_spam_{{ file.file }}" id="file_is_spam_{{ file.file }}" checked>
|
||||
<label class="ban_form--content_file_chkbox_lbl" for="file_is_spam_{{ file.file }}">File is spam</label>
|
||||
[<input class="ban_form--content_file_chkbox" type="checkbox" name="file_is_spam_{{ file.file }}" id="file_is_spam_{{ file.file }}" checked>
|
||||
<label class="ban_form--content_file_chkbox_lbl" for="file_is_spam_{{ file.file }}">Is spam</label>]
|
||||
[<input class="ban_form--content_file_chkbox" type="checkbox" name="file_is_illegal_{{ file.file }}" id="file_is_illegal_{{ file.file }}" checked>
|
||||
<label class="ban_form--content_file_chkbox_lbl" for="file_is_illegal_{{ file.file }}">Is illegal</label>]
|
||||
{% endif %}
|
||||
{% include "post/image_identification.html" %}
|
||||
{% include "post/file_controls.html" %}</span></p>
|
||||
|
|
Loading…
Reference in New Issue