#text("common.concepts.key"): |
$issue.getKey() |
#text("issue.field.issuetype"): |
#set ($issueType = $issue.getIssueTypeObject())
## This is all one line so that we don't get the bug in IE6 where the whitespace gets an underline
#renderIcon(${issueType.iconUrlHtml} ${issueType.getNameTranslation($i18n)})
$textutils.htmlEncode(${issueType.getNameTranslation($i18n)}, false)
|
#text("issue.field.status"): |
#set ($status = ${issue.getStatusObject()})
#renderIcon(${status.iconUrlHtml} ${status.getNameTranslation($i18n)})
$textutils.htmlEncode(${status.getNameTranslation($i18n)}, false)
|
#if ($issue.getPriorityObject())
#text("issue.field.priority"): |
#set ($priority = $issue.getPriorityObject())
#renderIcon(${priority.iconUrlHtml} ${priority.getNameTranslation($i18n)})
$textutils.htmlEncode(${priority.getNameTranslation($i18n)}, false)
|
#end
#if ($issue.getResolutionObject())
#text("issue.field.resolution"): |
$textutils.htmlEncode($issue.getResolutionObject().getNameTranslation($i18n), false)
|
#end
#text("issue.field.assignee"): |
#authorlinkkey($issue.assigneeId "")
|
#text("issue.field.reporter"): |
#if ($issue.reporterId)
#authorlinkkey($issue.reporterId "")
#else
#text("common.concepts.no.reporter")
#end
|
#if ($issue.getVotes() && $issue.getVotes().intValue() > 0)
#text("common.concepts.votes"): |
$issue.getVotes()
|
#end
#if ($applicationProperties.getOption('jira.option.timetracking'))
#if ($issue.getOriginalEstimate() || $issue.getAggregateOriginalEstimate())
#text("common.concepts.original.estimate"): |
$issue.getNiceTimeOriginalEstimate($i18n)
|
#end
#if ($issue.getEstimate() || $issue.getAggregateRemainingEstimate())
#text("common.concepts.remaining.estimate"): |
$issue.getNiceTimeEstimate($i18n)
|
#end
#if ($issue.getTimeSpent() || $issue.getAggregateTimeSpent())
#text("common.concepts.time.spent"): |
$issue.getNiceTimeSpent($i18n)
|
#end
#if ($issue.isAnyAggregateDifferent())
#if ($issue.getOriginalEstimate() || $issue.getAggregateOriginalEstimate())
#text("common.concepts.aggregate.original.estimate"): |
$issue.getNiceTimeAggregateOriginalEstimate($i18n)
|
#end
#if ($issue.getEstimate() || $issue.getAggregateRemainingEstimate())
#text("common.concepts.aggregate.remaining.estimate"): |
$issue.getNiceTimeAggregateRemainingEstimate($i18n)
|
#end
#if ($issue.getTimeSpent() || $issue.getAggregateTimeSpent())
#text("common.concepts.aggregate.time.spent"): |
$issue.getNiceTimeAggregateTimeSpent($i18n)
|
#end
#end
#end
#if ($issue.getEnvironment() && $issue.getEnvironment().length() != 0)
#text("common.words.env"): |
$issue.getHtmlEnvironment()
|
#end