{% extends "base.html" %} {% load static from staticfiles %} {% load request_tags %} {% load bootstrap %} {% block headers %} {% endblock %} {% block content %} {% if targetUsername and targetUsername != user.username %}
{% else %} {% endif %}

{{ page_name }}


{% if create_form %}
{% csrf_token %} {{ create_form|bootstrap }}
{% endif %} {% 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" }}
{% if threads.count > 10 %} {% with id_prefix="thread" %} {% include "pager.html" %} {% endwith %} {% else %}
{{ threads.count }} thread{{ threads|pluralize }} in total.
{% endif %} {% endif %} {% endblock %} {% block endscripts %} {% endblock %}