{% extends "base.html" %} {% load static %} {% block style-discussion-thread %}{% endblock %} {% block nav-subjects %}My Subjects{% endblock %} {% block body%}
{% for thread in threads %}

{{thread.title}}

- {{thread.person.fname}} {{thread.time}}
{{thread.msg}}
{% endfor %}
{% csrf_token %}
{{form.title}}
{{form.msg}}
{% endblock %}