~pidgeon690/pidge-groups/trunk

« back to all changes in this revision

Viewing changes to Apps/Discuss/templates/discuss-all

  • Committer: Fergus Ross Ferrier
  • Date: 2009-05-25 22:10:29 UTC
  • mfrom: (273.2.4 refactor+user)
  • Revision ID: hello@fergusrossferrier.co.uk-20090525221029-gqdycg3rfhxujqpz
Merged user-refactor fun.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "base" %}
2
 
{% block title %}Discuss{% endblock %}
3
 
{% block content %}
4
 
 
5
 
<table>
6
 
{% for conversation in conversations %}
7
 
<tr style="background: #eee8f6">
8
 
    <td width="300" style="padding: 5px;">
9
 
        <h3><a href='{% url Discuss.views.OneConversation conversation.id %}'>{{conversation.title|escape}}</a></h3>
10
 
        <br />{{conversation.subtitle}}
11
 
    </td>
12
 
        
13
 
        <td style="padding: 5px;">
14
 
                <b>{{ conversation.author.firstname|escape }} {{ conversation.author.lastname|escape }}</b>
15
 
        </td>
16
 
        
17
 
        <td style="padding: 5px;">
18
 
                {{ conversation.created|date:"P - D, dS \o\f F Y" }}
19
 
        </td>
20
 
 
21
 
</tr>
22
 
{% endfor %}
23
 
</table>
24
 
 
25
 
{% endblock %}