@if (task()?.issueWasUpdated) {
}
@if (issue?.assignee?.web_url) { } @if (issue?.labels?.length) { } @if (issue?.body) { }
{{ T.F.GITLAB.ISSUE_CONTENT.SUMMARY | translate }} {{ issue?.title }} #{{ issue?.number }}
{{ T.F.GITLAB.ISSUE_CONTENT.STATUS | translate }} {{ issue?.state }}
{{ T.F.GITLAB.ISSUE_CONTENT.ASSIGNEE | translate }} {{ issue?.assignee?.username }}
{{ T.F.GITLAB.ISSUE_CONTENT.LABELS | translate }} @for (label of issue?.labels; track label) { {{ label }} }
{{ T.F.GITLAB.ISSUE_CONTENT.DESCRIPTION | translate }}
@if (issue?.comments) {
@for ( comment of issue?.comments | sort: 'created_at'; track trackByIndex($index, comment) ) {
{{ comment.author?.username }} {{ T.F.GITLAB.ISSUE_CONTENT.AT | translate }} {{ comment.created_at | date: 'short' }}
@if (comment.body) {
}
}
}
textsms {{ T.F.GITLAB.ISSUE_CONTENT.WRITE_A_COMMENT | translate }}