41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
extends lb-create-edit
|
|
|
|
block options
|
|
section.ticket-assigned-to(
|
|
tg-assigned-to-inline
|
|
ng-model="obj"
|
|
required-perm="modify_{{ objType }}"
|
|
)
|
|
div.ticket-data-container
|
|
tg-issue-type-button.ticket-status(
|
|
not-auto-save="true"
|
|
ng-model="obj"
|
|
)
|
|
tg-issue-severity-button.ticket-status(
|
|
not-auto-save="true"
|
|
ng-model="obj"
|
|
)
|
|
tg-issue-priority-button.ticket-status(
|
|
not-auto-save="true"
|
|
ng-model="obj"
|
|
)
|
|
|
|
div.ticket-detail-settings
|
|
tg-due-date-popover(
|
|
due-date="obj.due_date"
|
|
is-closed="obj.is_closed"
|
|
item="obj"
|
|
not-auto-save="true"
|
|
)
|
|
div
|
|
label.button-gray.is-blocked(
|
|
title="{{ 'COMMON.BLOCK_TITLE' | translate }}"
|
|
ng-class="{ 'button-red item-unblock': obj.is_blocked, 'item-block': !obj.is_blocked }"
|
|
)
|
|
tg-svg(svg-icon="icon-lock")
|
|
|
|
tg-blocking-message-input(
|
|
watch="obj.is_blocked"
|
|
ng-model="obj.blocked_note"
|
|
)
|