Add list of relevant forum topics to last page of results

This commit is contained in:
rubenwardy
2018-08-25 18:20:45 +01:00
parent b296b9b299
commit 36000b1592
7 changed files with 83 additions and 25 deletions

View File

@@ -37,4 +37,12 @@
<li>{{ page }} / {{ page_max }}</li>
{% if next_url %}<li><a href="{{ next_url }}">Next</a></li> {% endif %}
</ul>
{% if topics %}
<h2 style="margin-top:2em;">More content from the forums</h2>
{% from "macros/topics.html" import render_topics %}
{{ render_topics(topics, current_user) }}
{% endif %}
{% endblock %}