view sg101/templates/ygroup/v3/thread.html @ 1084:5fa22ed8bfb2

Word wrap Yahoo Group postings.
author Brian Neal <bgneal@gmail.com>
date Wed, 27 Apr 2016 20:04:05 -0500
parents 9f4eb8f055ef
children
line wrap: on
line source
{% extends 'v3/base.html' %}
{% load static from staticfiles %}
{% block title %}Yahoo Group Archives: {{ thread.title }}{% endblock %}
{% block content %}
<a name="top" class="intra"></a>
{% if thread.page == 1 %}
<h2 class="forum-nav"><a href="{% url 'ygroup-thread_index' %}">Yahoo Group Archives</a> &raquo; </h2>
{% else %}
<h2 class="forum-nav"><a href="{% url 'ygroup-thread_index' %}">Yahoo Group Archives</a> <small>&raquo;
   <a href="{% url 'ygroup-thread_index' %}?page={{ thread.page }}">Page {{ thread.page }}</a> &raquo;</small></h2>
{% endif %}
<h3 class="forum-nav">{{ thread.title }}
   <a href="{{ thread.get_absolute_url }}" rel="nofollow">
      <i class="fi-link size-36" title="permalink"></i></a>
</h3>
{% include "ygroup/v3/pagination.html" %}
<dl>
   {% for post in page_obj.object_list %}
   <dt><a name="p{{ post.id }}"></a>{{ post.poster }} - {{ post.creation_date|date:"d M Y H:i:s" }}
   <a href="{{ post.get_absolute_url }}" rel="nofollow">
      <i class="fi-link size-16" title="permalink" /></i></a></dt>
   <dd>
   <div class="callout word-wrap">
      {{ post.msg|linebreaks }}
   </div>
   <p><a href="#top" class="quiet" title="Goto top of page">Top</a></p>
   </dd>
   {% endfor %}
</dl>
{% include "ygroup/v3/pagination.html" %}
{% endblock %}