8d8563a20d
Conflicts: templates/post_reply.html templates/post_thread.html
118 lines
4.3 KiB
HTML
118 lines
4.3 KiB
HTML
{% filter remove_whitespace %}
|
|
{# tabs and new lines will be ignored #}
|
|
|
|
<div id="thread_{{ post.id }}" data-board="{{ board.uri }}">
|
|
{% if not index %}<a id="{{ post.id }}" class="post_anchor"></a>{% endif %}
|
|
|
|
{% if post.embed %}
|
|
{{ post.embed }}
|
|
{% elseif post.file == 'deleted' %}
|
|
<img class="post-image deleted" src="{{ config.image_deleted }}" alt="" />
|
|
{% elseif post.file and post.file %}
|
|
<p class="fileinfo">{% trans %}File:{% endtrans %} <a href="{{ config.uri_img }}{{ post.file }}">{{ post.file }}</a> <span class="unimportant">
|
|
(
|
|
{% if post.thumb == 'spoiler' %}
|
|
{% trans %}Spoiler Image{% endtrans %},
|
|
{% endif %}
|
|
{{ post.filesize|filesize }}
|
|
{% if post.filewidth and post.fileheight %}
|
|
, {{ post.filewidth}}x{{ post.fileheight }}
|
|
{% if config.show_ratio %}
|
|
, {{ post.ratio }}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if config.show_filename and post.filename %}
|
|
,
|
|
{% if post.filename|length > config.max_filename_display %}
|
|
<span class="postfilename" title="{{ post.filename|e }}">{{ post.filename|truncate(config.max_filename_display)|bidi_cleanup }}</span>
|
|
{% else %}
|
|
<span class="postfilename">{{ post.filename|e|bidi_cleanup }}</span>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% include "post/image_identification.html" %}
|
|
)
|
|
</span></p>
|
|
{% include "post/image.html" %}
|
|
{% endif %}
|
|
<div class="post op"><p class="intro">
|
|
<input type="checkbox" class="delete" name="delete_{{ post.id }}" id="delete_{{ post.id }}" />
|
|
<label for="delete_{{ post.id }}">
|
|
{% include 'post/subject.html' %}
|
|
{% include 'post/name.html' %}
|
|
{% include 'post/ip.html' %}
|
|
{% include 'post/flag.html' %}
|
|
{% include 'post/time.html' %}
|
|
</label>
|
|
{% include 'post/poster_id.html' %}
|
|
<a class="post_no" id="post_no_{{ post.id }}" onclick="highlightReply({{ post.id }})" href="{{ post.link }}">No.</a>
|
|
<a class="post_no" onclick="citeReply({{ post.id }})" href="{{ post.link('q') }}">{{ post.id }}</a>
|
|
{% if post.sticky %}
|
|
{% if config.font_awesome %}
|
|
<i class="fa fa-thumb-tack"></i>
|
|
{% else %}
|
|
<img class="icon" title="Sticky" src="{{ config.image_sticky }}" alt="Sticky" />
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if post.locked %}
|
|
{% if config.font_awesome %}
|
|
<i class="fa fa-lock"></i>
|
|
{% else %}
|
|
<img class="icon" title="Locked" src="{{ config.image_locked }}" alt="Locked" />
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if post.bumplocked and (config.mod.view_bumplock < 0 or (post.mod and post.mod|hasPermission(config.mod.view_bumplock, board.uri))) %}
|
|
{% if config.font_awesome %}
|
|
<i class="fa fa-anchor"></i>
|
|
{% else %}
|
|
<img class="icon" title="Bumplocked" src="{{ config.image_bumplocked }}" alt="Bumplocked" />
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if index %}
|
|
<a href="{{ post.root }}{{ board.dir }}{{ config.dir.res }}{{ config.file_page|sprintf(post.id) }}">[{% trans %}Reply{% endtrans %}]</a>
|
|
{% endif %}
|
|
{% if isnoko50 %}
|
|
<a href="{{ post.root }}{{ board.dir }}{{ config.dir.res }}{{ config.file_page|sprintf(post.id) }}">[{% trans %}View All{% endtrans %}]</a>
|
|
{% endif %}
|
|
{% if hasnoko50 and not isnoko50 %}
|
|
{% set lastcount = config.noko50_count %}
|
|
<a href="{{ post.root }}{{ board.dir }}{{ config.dir.res }}{{ config.file_page50|sprintf(post.id) }}">[{% trans %}Last 1 Post{% plural lastcount %}Last {{ count }} Posts{% endtrans %}]</a>
|
|
{% endif %}
|
|
{{ post.postControls }}
|
|
</p>
|
|
<div class="body">
|
|
{% endfilter %}{% if index %}{{ post.body|truncate_body(post.link) }}{% else %}{{ post.body }}{% endif %}{% filter remove_whitespace %}
|
|
{% if post.modifiers['ban message'] %}
|
|
{{ config.mod.ban_message|sprintf(post.modifiers['ban message']) }}
|
|
{% endif %}
|
|
</div>
|
|
{% if post.omitted or post.omitted_images %}
|
|
<span class="omitted">
|
|
{% if post.omitted %}
|
|
{% trans %}
|
|
1 post
|
|
{% plural post.omitted %}
|
|
{{ count }} posts
|
|
{% endtrans %}
|
|
{% if post.omitted_images %}
|
|
{% trans %}and{% endtrans %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if post.omitted_images %}
|
|
{% trans %}
|
|
1 image reply
|
|
{% plural post.omitted_images %}
|
|
{{ count }} image replies
|
|
{% endtrans %}
|
|
{% endif %} {% trans %}omitted. Click reply to view.{% endtrans %}
|
|
</span>
|
|
{% endif %}
|
|
{% if not index %}
|
|
{% endif %}
|
|
</div>{% endfilter %}
|
|
{% set hr = post.hr %}
|
|
{% for post in post.posts %}
|
|
{% include 'post_reply.html' %}
|
|
{% endfor %}
|
|
<br class="clear"/>{% if hr %}<hr/>{% endif %}
|
|
</div>
|