forked from leftypol/leftypol
Deprecate postControls(), per-file deletion and spoilering
This commit is contained in:
parent
400df0975f
commit
042e7b9c59
10 changed files with 123 additions and 155 deletions
10
templates/post/file_controls.html
Normal file
10
templates/post/file_controls.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% if post.files and mod %}
|
||||
<span class="controls">
|
||||
{% if file.file != 'deleted' and mod|hasPermission(config.mod.deletefile, board.uri) %}
|
||||
{{ secure_link_confirm(config.mod.link_deletefile, 'Delete file'|trans, 'Are you sure you want to delete this file?'|trans, board.dir ~ 'deletefile/' ~ post.id ~ '/' ~ loop.index0 ) }}
|
||||
{% endif %}
|
||||
{% if file.file and file.file != 'deleted' and file.thumb != 'spoiler' and mod|hasPermission(config.mod.spoilerimage, board.uri) %}
|
||||
{{ secure_link_confirm(config.mod.link_spoilerimage, 'Spoiler file'|trans, 'Are you sure you want to spoiler this file?'|trans, board.dir ~ 'spoiler/' ~ post.id ~ '/' ~ loop.index0 ) }}
|
||||
{% endif %}
|
||||
</span>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue