diff options
author | lpsolit%gmail.com <> | 2007-02-27 01:14:32 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-02-27 01:14:32 +0100 |
commit | 79dd481670c0a1d3862062121a8ed9190f4a0edb (patch) | |
tree | 7ae18e6632e08f051f7daeb5adc15e58b783f49f /template | |
parent | ca2b99c042e0bc18880a157843302624034cb864 (diff) | |
download | bugzilla-79dd481670c0a1d3862062121a8ed9190f4a0edb.tar.gz bugzilla-79dd481670c0a1d3862062121a8ed9190f4a0edb.tar.xz |
Bug 314659: Provide more information for the Atom summary - Patch by Frédéric Buclin <LpSolit@gmail.com> r=bkor a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/list/list.atom.tmpl | 37 |
1 files changed, 27 insertions, 10 deletions
diff --git a/template/en/default/list/list.atom.tmpl b/template/en/default/list/list.atom.tmpl index 837c70b9a..630f04638 100644 --- a/template/en/default/list/list.atom.tmpl +++ b/template/en/default/list/list.atom.tmpl @@ -61,22 +61,39 @@ <table> <tr> <th>Field</th><th>Value</th> - </tr><tr> - <td>[% columns.opendate.title FILTER html %]</td> - <td>[% bug.opendate FILTER html %]</td> - </tr><tr> + </tr><tr class="bz_feed_product"> + <td>[% columns.product.title FILTER html %]</td> + <td>[% bug.product FILTER html %]</td> + </tr><tr class="bz_feed_component"> + <td>[% columns.component.title FILTER html %]</td> + <td>[% bug.component FILTER html %]</td> + </tr><tr class="bz_feed_assignee"> <td>[% columns.assigned_to_realname.title FILTER html %]</td> <td>[% bug.assigned_to_realname FILTER html %]</td> - </tr><tr> + </tr><tr class="bz_feed_reporter"> + <td>[% columns.reporter_realname.title FILTER html %]</td> + <td>[% bug.reporter_realname FILTER html %]</td> + </tr><tr class="bz_feed_bug_status"> + <td>[% columns.bug_status.title FILTER html %]</td> + <td>[% bug.bug_status FILTER html %]</td> + </tr><tr class="bz_feed_resolution"> + <td>[% columns.resolution.title FILTER html %] </td> + <td>[% bug.resolution FILTER html %]</td> + </tr><tr class="bz_feed_priority"> <td>[% columns.priority.title FILTER html %]</td> <td>[% bug.priority FILTER html %]</td> - </tr><tr> + </tr><tr class="bz_feed_severity"> <td>[% columns.bug_severity.title FILTER html %] </td> <td>[% bug.bug_severity FILTER html %]</td> - </tr><tr> - <td>[% columns.bug_status.title FILTER html %]</td> - <td>[% bug.bug_status FILTER html %]</td> - </tr><tr> + [% IF Param("usetargetmilestone") %] + </tr><tr class="bz_feed_target_milestone"> + <td>[% columns.target_milestone.title FILTER html %]</td> + <td>[% bug.target_milestone FILTER html %]</td> + [% END %] + </tr><tr class="bz_feed_creation_date"> + <td>[% columns.opendate.title FILTER html %]</td> + <td>[% bug.opendate FILTER html %]</td> + </tr><tr class="bz_feed_changed_date"> <td>[% columns.changeddate.title FILTER html %]</td> <td>[% bug.changeddate FILTER html -%]</td> </tr> |