{% extends 'base.html' %} {% block title %}Forums{% endblock %} {% block content %}

Welcome to the Forums!

{% for category in categories %}
{{ category.category_name }}
{% set count = 0 %} {% for post in posts %} {% if post.category_id == category.id %} {% if count < 10 %}
{{ post.post_name }}

{{ post.text }}

Created by {{ post.created_by }} - {{ post.creation_date }}
{% set count = count + 1 %} {% endif %} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}