diff templates/classic/html/issue.index.html @ 2077:3e0961d6d44d

Added the "actor" property. Metakit backend not done (still not confident I know how it's supposed to work ;) Currently it will come up as NULL in the RDBMS backends for older items. The *dbm backends will look up the journal. I hope to remedy the former before 0.7's release. Fixed a bunch of migration issues in the rdbms backends while I was at it (index changes for key prop changes) and simplified the class table update code for RDBMSes that have "alter table" in their command set (ie. not sqlite) ... migration from "version 1" to "version 2" still hasn't actually been tested yet though.
author Richard Jones <richard@users.sourceforge.net>
date Mon, 15 Mar 2004 05:50:20 +0000
parents b1704ba7be41
children b86f0627b07c
line wrap: on
line diff
--- a/templates/classic/html/issue.index.html	Fri Mar 12 05:36:26 2004 +0000
+++ b/templates/classic/html/issue.index.html	Mon Mar 15 05:50:20 2004 +0000
@@ -17,10 +17,11 @@
    <th tal:condition="request/show/id">ID</th>
    <th tal:condition="request/show/creation">Creation</th>
    <th tal:condition="request/show/activity">Activity</th>
+   <th tal:condition="request/show/actor">Actor</th>
    <th tal:condition="request/show/topic">Topic</th>
    <th tal:condition="request/show/title">Title</th>
    <th tal:condition="request/show/status">Status</th>
-   <th tal:condition="request/show/creator">Created&nbsp;By</th>
+   <th tal:condition="request/show/creator">Creator</th>
    <th tal:condition="request/show/assignedto">Assigned&nbsp;To</th>
   </tr>
  <tal:block tal:repeat="i batch">
@@ -39,6 +40,8 @@
        tal:content="i/creation/reldate">&nbsp;</td>
    <td class="date" tal:condition="request/show/activity"
        tal:content="i/activity/reldate">&nbsp;</td>
+   <td class="date" tal:condition="request/show/actor"
+       tal:content="python:i.actor.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/topic"
        tal:content="python:i.topic.plain() or default">&nbsp;</td>
    <td tal:condition="request/show/title">

Roundup Issue Tracker: http://roundup-tracker.org/