| {{ T.F.JIRA.ISSUE_CONTENT.SUMMARY | translate }} | {{ issue?.key }} {{ issue?.summary }} |
|---|---|
| {{ T.F.JIRA.ISSUE_CONTENT.STATUS | translate }} | {{ issue?.status?.name }} |
| {{ T.F.JIRA.ISSUE_CONTENT.STORY_POINTS | translate }} | {{ issue?.storyPoints }} |
| {{ T.F.JIRA.ISSUE_CONTENT.ASSIGNEE | translate }} | {{ issue?.assignee?.displayName || '–' }} |
| {{ T.F.JIRA.ISSUE_CONTENT.WORKLOG | translate }} | {{ issue?.timespent * 1000 | msToString }} / {{ issue?.timeestimate * 1000 | msToString }} |
| {{ T.F.JIRA.ISSUE_CONTENT.SUB_TASKS | translate }} |
|
| {{ T.F.JIRA.ISSUE_CONTENT.RELATED | translate }} | |
| {{ T.F.JIRA.ISSUE_CONTENT.COMPONENTS | translate }} |
|
| {{ T.F.JIRA.ISSUE_CONTENT.DESCRIPTION | translate }} | @if (description) { } |
| {{ T.F.JIRA.ISSUE_CONTENT.COMMENTS | translate }} |
@for (
comment of issue?.comments | sort: 'created';
track trackByIndex($index, comment)
) {
{{ comment.author.displayName }}
{{ T.F.JIRA.ISSUE_CONTENT.AT | translate }}
{{ comment.created | date: 'short' }}
@if (comment.body) {
}
|