{% extends "base.html" %} {% block title %}Forum{% endblock %} {% block content %}
Community

Community Forum

Connect with other developers, ask questions, share knowledge, and grow together.

Categories
{% if categories %} {% else %}

No categories yet

The forum is being set up. Check back soon!

{% endif %}
Recent Activity
{% if recent_topics %}
{% for topic in recent_topics %}
{{ topic.author.username[0].upper() }}
{{ topic.title }}
by {{ topic.author.username }} in {{ topic.category.name }}
{{ topic.reply_count }}
replies
{% endfor %}
{% else %}

No recent activity yet.

{% endif %}
{% endblock %}