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

Welcome to the Forums!

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

{{ post.text }}

Created by {{ post.created_by }} - {{ post.creation_date.strftime('%Y-%m-%d %H:%M') }} {% if post.media %} Post Media {% endif %}
{% set count = count + 1 %} {% endif %} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}