diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2006-01-25 17:13:06 -0500 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2006-01-25 17:13:06 -0500 |
commit | 4eb3e0d84a15aabbf723fe9b3696dfc81efd9bb0 (patch) | |
tree | 5287a7b6209076b2866e305aebf279b60a29a425 /beweb | |
parent | c9c843435d418943422cb26c4762bf0519b9a266 (diff) | |
download | bugseverywhere-4eb3e0d84a15aabbf723fe9b3696dfc81efd9bb0.tar.gz |
Show number of comments in bug list
Diffstat (limited to 'beweb')
-rw-r--r-- | beweb/beweb/templates/bugs.kid | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/beweb/beweb/templates/bugs.kid b/beweb/beweb/templates/bugs.kid index c174d00..30004fc 100644 --- a/beweb/beweb/templates/bugs.kid +++ b/beweb/beweb/templates/bugs.kid @@ -20,8 +20,8 @@ def row_class(bug): <body> <h1>Bug list for ${project_name}</h1> <table> -<tr><td>ID</td><td>Status</td><td>Severity</td><td>Assigned To</td><td>Summary</td></tr> -<div py:for="bug in bugs" py:strip="True"><tr class="${row_class(bug)}" py:if="bug.active or show_closed"><td><a href="${bug_url(project_id, bug.uuid)}">${unique_name(bug, bugs[:])}</a></td><td>${bug.status}</td><td>${bug.severity}</td><td>${people.get(bug.assigned, bug.assigned)}</td><td>${bug.summary}</td></tr> +<tr><td>ID</td><td>Status</td><td>Severity</td><td>Assigned To</td><td>Comments</td><td>Summary</td></tr> +<div py:for="bug in bugs" py:strip="True"><tr class="${row_class(bug)}" py:if="bug.active or show_closed"><td><a href="${bug_url(project_id, bug.uuid)}">${unique_name(bug, bugs[:])}</a></td><td>${bug.status}</td><td>${bug.severity}</td><td>${people.get(bug.assigned, bug.assigned)}</td><td>${len(list(bug.iter_comment_ids()))}</td><td>${bug.summary}</td></tr> </div> </table> <a href="${project_url()}">Project list</a> |