2008-08-07 23:12:24 +02:00
|
|
|
{trans 'Hello,'}
|
|
|
|
|
|
|
|
{blocktrans}A new issue has been created and assigned
|
|
|
|
to you:{/blocktrans}
|
|
|
|
|
|
|
|
{$issue.id} - {$issue.summary|safe}
|
|
|
|
{trans 'Project:'} {$project.name|safe}
|
|
|
|
{trans 'Status:'} {$issue.get_status.name|safe}
|
|
|
|
{trans 'Reported by:'} {$issue.get_submitter|safe}
|
|
|
|
{assign $tags = $issue.get_tags_list()}{if $tags.count()}{trans 'Labels:'}
|
|
|
|
{foreach $tags as $tag} {$tag.class|safe}:{$tag.name|safe}
|
|
|
|
{/foreach}{/if}
|
|
|
|
{trans 'Description:'}
|
|
|
|
|
2008-11-30 10:52:06 +01:00
|
|
|
{$comment.content|safe}{assign $attachments = $comment.get_attachment_list()}
|
|
|
|
{if $attachments.count() > 0}
|
|
|
|
{trans 'Attachments:'}{foreach $attachments as $a}
|
|
|
|
- {$a.filename|safe} - {$a.filesize|ssize}
|
2008-12-30 18:00:59 +01:00
|
|
|
{$url_base}{url 'IDF_Views_Issue::viewAttachment', array($project.shortname, $a.id, $a.filename)}{/foreach}
|
2008-11-30 10:52:06 +01:00
|
|
|
{/if}
|
2008-08-07 23:12:24 +02:00
|
|
|
--
|
|
|
|
{trans 'Issue:'} {$url_base}{url 'IDF_Views_Issue::view', array($project.shortname, $issue.id)}
|