2009-10-09 09:22:36 +02:00
|
|
|
<entry>
|
|
|
|
<title>{$title} - {$issue.get_status}</title>
|
|
|
|
<link href="{$url}"/>
|
|
|
|
<id>{$url}</id>
|
|
|
|
<updated>{$date}</updated>
|
|
|
|
<author>{$author}</author>
|
|
|
|
<content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<pre>{issuetext $c.content, $request}</pre>
|
|
|
|
{assign $attachments = $c.get_attachment_list()}
|
|
|
|
{if $attachments.count() > 0}
|
|
|
|
<hr align="left" class="attach" />
|
|
|
|
<ul>
|
2011-06-29 17:41:18 +02:00
|
|
|
{foreach $attachments as $a}<li><a href="{url 'IDF_Views_Issue::viewAttachment', array($project.shortname, $a.id, $a.filename)}">{$a.filename}</a> - {$a.filesize|ssize}</li>{/foreach}
|
2009-10-09 09:22:36 +02:00
|
|
|
</ul>{/if}
|
|
|
|
{if $c.changes}
|
|
|
|
{foreach $c.changes as $w => $v}
|
2011-06-29 17:41:18 +02:00
|
|
|
<strong>{if $w == 'su'}{trans 'Summary:'}{/if}{if $w == 'st'}{trans 'Status:'}{/if}{if $w == 'ow'}{trans 'Owner:'}{/if}{if $w == 'lb'}{trans 'Labels:'}{/if}{if $w == 'rel'}{trans 'Relations:'}{/if}</strong>
|
|
|
|
{if $w == 'lb' or $w == 'rel'}
|
|
|
|
{foreach $v as $t => $ls}
|
|
|
|
{foreach $ls as $l}
|
|
|
|
{if $t == 'rem'}<s>{/if}{$l}{if $t == 'rem'}</s>{/if}
|
|
|
|
{/foreach}
|
|
|
|
{/foreach}
|
|
|
|
{else}
|
|
|
|
{$v}
|
|
|
|
{/if}<br />
|
2009-10-09 09:22:36 +02:00
|
|
|
{/foreach}
|
|
|
|
{/if}
|
|
|
|
</div></content>
|
|
|
|
</entry>
|
2011-06-29 17:41:18 +02:00
|
|
|
|