wiki.clockworkpi.com/_global/Special:Users.html
2019-05-04 22:24:47 +02:00

18 lines
478 B
HTML

---
layout: default
title: Users
menu: ['global']
---
{%- include /functions/wiki-tags.html -%}
<ul>
{%- for user in site.data.users -%}
{%- assign counter = 0 -%}
{%- for other_page in wiki_pages %}
{%- if other_page.author == user[0] -%}
{%- assign counter = counter | plus: 1 -%}
{%- endif -%}
{%- endfor -%}
<li><a href="/{{ site.data.i18n[site.lang].prefix.user }}{{ user[0] }}.html">{{ user[1].name }}</a> ({{counter}} pages)</li>
{%- endfor -%}
</ul>