{% extends "base.html" %} {% load static from staticfiles %} {% load request_tags %} {% block headers %} {% endblock %} {% block content %}
{% if page_name == 'Archives - All Threads' %}
{% elif page_name == 'My Threads' %}
{% elif targetUsername %}
{% endif %}

{{ page_name }}

{% if not threads %}
No threads found.
{% else %} {% if page_name == 'Archives - All Threads' %}{% endif %} {% for thread in threads %} {% if page_name == 'Archives - All Threads' %}{% endif %} {% endfor %}
SubjectProgenitorReplies Posted Updated
{% if page_name == 'Archives - All Threads' %}{{ thread.subject|truncatechars:40 }}{% else %}{{ thread.subject|truncatechars:60 }}{% endif %}{{ thread.owner.user.first_name }} {{ thread.owner.user.last_name }}{{ thread.number_of_messages|add:"-1" }} {{ thread.start_date|date:"m/d/Y, h:i A" }} {{ thread.change_date|date:"m/d/Y, h:i A" }}
{% endif %}
{{ threads.count }} thread{{ threads|pluralize }} in total.
{% endblock %} {% block endscripts %} {% endblock %}