]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/wiki/modules/list.html
wiki: Show recent changes
[ipfire.org.git] / src / templates / wiki / modules / list.html
1 {% for page in pages %}
2 <strong class="mb-0">
3 <a href="{{ page.url }}">{{ page.title }}</a>
4 </strong>
5
6 <p class="text-muted small">
7 {{ locale.format_date(page.timestamp, shorter=True, relative=False) }}
8
9 {% if page.author %}
10 {{ _("by") }}
11 <a href="/users/{{ page.author.uid }}">{{ page.author }}</a>
12 {% end %}
13 </p>
14 {% end %}