view gpp/templates/ygroup/thread_list.html @ 461:2d96d9bcf0de

Fixing #222. Verified all the fields have been validated before trying to use them in the form.clean() method.
author Brian Neal <bgneal@gmail.com>
date Tue, 05 Jul 2011 19:24:18 +0000
parents 0c18dfb1da1c
children
line wrap: on
line source
{% extends 'base.html' %}
{% load url from future %}
{% block title %}Yahoo Group Archives{% endblock %}
{% block custom_css %}
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" />
{% endblock %}
{% block content %}
<h2>Yahoo Group Archives &raquo; Page {{ page_obj.number }}</h2>
<p>
SurfGuitar101.com began as a Yahoo Group on October 31, 2001. It ran until August, 2007 when this site officially replaced it. On these pages you'll find the archived messages of our original group. You can also search through these messages via our <a href="{% url 'haystack_search' %}">search page</a>.
</p>
{% include "ygroup/pagination.html" %}
<table>
   <tr><th>Title</th><th>Author</th><th>Posts</th><th>Date</th></tr>
   {% for thread in page_obj.object_list %}
   <tr>
      <td><a href="{{ thread.get_absolute_url }}">{{ thread.title }}</a></td>
      <td>{{ thread.poster }}</td>
      <td>{{ thread.post_count }}</td>
      <td>{{ thread.creation_date|date:"d M Y" }}</td>
   </tr>
   {% endfor %}
</table>
{% include "ygroup/pagination.html" %}
{% endblock %}