{% extends "layout.html" %} {% block title %}Community Forum - Home{% endblock %} {% block content %}

Welcome to our Community Forum

A place to discuss, share and learn together.

{% if current_user.is_authenticated %}

Welcome back, {{ current_user.username }}!

What would you like to discuss today?

Create New Topic
{% endif %}
{% if categories %} {% else %}

No categories have been created yet.

{% if current_user.is_authenticated and current_user.is_admin() %} Create First Category {% endif %}
{% endif %}

Forum Statistics

{% set topic_count = namespace(total=0) %} {% set post_count = namespace(total=0) %} {% for category in categories %} {% set topic_count.total = topic_count.total + category.topic_count() %} {% set post_count.total = post_count.total + category.post_count() %} {% endfor %}

Members

{{ user_count if user_count is defined else '—' }}

Categories

{{ categories|length }}

Topics

{{ topic_count.total }}

Posts

{{ post_count.total }}

{% endblock %}