{{ forum }}
{% with nr_posts=forum.nr_posts %}{{ nr_posts }} post{{ nr_posts|pluralize }}{% endwith %}
{% if forum.child_forums.all|length > 0 %}
{% for child in forum.child_forums.all %}
{% include 'forums/forum_as_li.html' with forum=child %}
{% endfor %}
{% endif %}