Initial implementation of Thread stats for mods #33, Implemented using Twig without persistent storage, and display at end of thread.

This commit is contained in:
Benjamin Southall 2017-03-10 11:34:46 +09:00 committed by -
parent 59d83ab7de
commit 109b444730

View File

@ -87,9 +87,16 @@
{% if not index %}
{% endif %}
</div>{% endfilter %}
{% set iparray = [post.ip] %}
{% set hr = post.hr %}
{% for post in post.posts %}
{% if post.ip not in iparray %}
{% set iparray = iparray|merge([post.ip]) %}
{% endif %}
{% include 'post_reply.html' %}
{% endfor %}
{% if mod and not index %}
<p>Unique IPs: {{ iparray|length }} </p>
{% endif %}
<br class="clear"/>{% if hr %}<hr/>{% endif %}
</div>