58 lines
3.3 KiB
HTML
58 lines
3.3 KiB
HTML
{% if mod %}
|
|
|
|
<span class="controls {% if not post.thread %}op{% endif %}">
|
|
{% if mod|hasPermission(config.mod.delete, board.uri) %}
|
|
{{ secure_link_confirm(config.mod.link_delete, 'Delete'|trans, 'Are you sure you want to delete this?'|trans, board.dir ~ 'delete/' ~ post.id) }}
|
|
{% endif %}
|
|
{% if mod|hasPermission(config.mod.deletebyip, board.uri) %}
|
|
{{ secure_link_confirm(config.mod.link_deletebyip, 'Delete all posts by IP'|trans, 'Are you sure you want to delete all posts by this IP address?'|trans, board.dir ~ 'deletebyip/' ~ post.id) }}
|
|
{% endif %}
|
|
{% if mod|hasPermission(config.mod.deletebyip_global, board.uri) %}
|
|
{{ secure_link_confirm(config.mod.link_deletebyip_global, 'Delete all posts by IP across all boards'|trans, 'Are you sure you want to delete all posts by this IP address, across all boards?'|trans, board.dir ~ 'deletebyip/' ~ post.id ~ '/global') }}
|
|
{% endif %}
|
|
{% if mod|hasPermission(config.mod.ban, board.uri) %}
|
|
<a title="{% trans %}Ban{% endtrans %}" href="?/{{ board.dir }}ban/{{ post.id }}">{{ config.mod.link_ban }}</a>
|
|
{% endif %}
|
|
{% if mod|hasPermission(config.mod.bandelete, board.uri) %}
|
|
<a title="{% trans %}Ban & Delete{% endtrans %}" href="?/{{ board.dir }}ban&delete/{{ post.id }}">{{ config.mod.link_bandelete }}</a>
|
|
{% endif %}
|
|
|
|
{% if not post.thread %}
|
|
{% if mod|hasPermission(config.mod.sticky, board.uri) %}
|
|
{% if post.sticky %}
|
|
<a title="{% trans %}Make thread not sticky{% endtrans %}" href="?/{{ secure_link(board.dir ~ 'unsticky/' ~ post.id) }}">{{ config.mod.link_desticky }}</a>
|
|
{% else %}
|
|
<a title="{% trans %}Make thread sticky{% endtrans %}" href="?/{{ secure_link(board.dir ~ 'sticky/' ~ post.id) }}">{{ config.mod.link_sticky }}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if mod|hasPermission(config.mod.bumplock, board.uri) %}
|
|
{% if post.sage %}
|
|
<a title="{% trans %}Allow thread to be bumped{% endtrans %}" href="?/{{ secure_link(board.dir ~ 'bumpunlock/' ~ post.id) }}">{{ config.mod.link_bumpunlock }}</a>
|
|
{% else %}
|
|
<a title="{% trans %}Prevent thread from being bumped{% endtrans %}" href="?/{{ secure_link(board.dir ~ 'bumplock/' ~ post.id) }}">{{ config.mod.link_bumplock }}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if mod|hasPermission(config.mod.lock, board.uri) %}
|
|
{% if post.locked %}
|
|
<a title="{% trans %}Unlock thread{% endtrans %}" href="?/{{ secure_link(board.dir ~ 'unlock/' ~ post.id) }}">{{ config.mod.link_unlock }}</a>
|
|
{% else %}
|
|
<a title="{% trans %}Lock thread{% endtrans %}" href="?/{{ secure_link(board.dir ~ 'lock/' ~ post.id) }}">{{ config.mod.link_lock }}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% if mod|hasPermission(config.mod.move, board.uri) %}
|
|
{% if not post.thread %}
|
|
<a title="{% trans %}Move thread to another board{% endtrans %}" href="?/{{ board.dir }}move/{{ post.id }}">{{ config.mod.link_move }}</a>
|
|
{% else %}
|
|
<a title="{% trans %}Move reply to another board{% endtrans %}" href="?/{{ board.dir }}move_reply/{{ post.id }}">{{ config.mod.link_move }}</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if mod|hasPermission(config.mod.editpost, board.uri) %}
|
|
<a title="{% trans %}Edit post{% endtrans %}" href="?/{{ board.dir }}edit{% if config.mod.raw_html_default %}_raw{% endif %}/{{ post.id }}">{{ config.mod.link_editpost }}</a>
|
|
{% endif %}
|
|
</span>
|
|
|
|
{% endif %}
|