{% extends 'base.html' %} {% load static %} {% block title %}Widget's Forum{% endblock %} {% block heading %}

Welcome to Widget's Forum!

{% endblock %} {% block content %}

Forum Posts:
{% for post in posts|slice:"::-1" %} {{ post.title }} by {{ post.author.first_name }} {{ post.author.last_name }}
{% endfor %}

{% endblock %} {% block footing %}

Dashboard
Announcements
Assignments
Calendar

{% endblock %}