Browse Source

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

pull/40/head
Benjamin Southall 7 years ago
parent
commit
a1d4854448
  1. 7
      templates/post_thread.html

7
templates/post_thread.html

@ -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>

Loading…
Cancel
Save