kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
10 years ago
|
<div id="detail-panel-watchers">
|
||
|
<ul ng-if="watchers.length">
|
||
10 years ago
|
<li ng-repeat="watcher in watchers">
|
||
10 years ago
|
<user-field focus="$index == focusElementIndex" user="watcher"></user-field>
|
||
10 years ago
|
<accessible-by-keyboard execute="deleteWatcher(watcher)" ng-if="watcher.links.removeWatcher"
|
||
|
link-class="detail-panel-watchers-delete-watcher-link">
|
||
10 years ago
|
<icon-wrapper icon-name="close"
|
||
|
icon-title="{{I18n.t('js.button_delete_watcher')}}"
|
||
10 years ago
|
class="detail-panel-watchers-delete-watcher-icon"></icon-wrapper>
|
||
|
</accessible-by-keyboard>
|
||
10 years ago
|
</li>
|
||
|
</ul>
|
||
10 years ago
|
|
||
10 years ago
|
<div id="detail-panel-watchers-add-watcher" ng-if="workPackage.link('addWatcher') && availableWatchers.length">
|
||
10 years ago
|
<h3 ng-bind="I18n.t('js.button_add_watcher')"/>
|
||
|
<fieldset>
|
||
|
<legend ng-bind="I18n.t('js.button_add_watcher')" class="hidden-for-sighted"/>
|
||
10 years ago
|
<input type="hidden"
|
||
|
ng-model="watcher.selected"
|
||
|
data-placeholder="{{ I18n.t('js.label_select_watcher') }}"
|
||
|
simple-query="getAvailableWatchers"
|
||
|
ui-select2-sortable
|
||
|
focus="focusElementIndex < 0">
|
||
|
</input>
|
||
10 years ago
|
</fieldset>
|
||
|
</div>
|
||
|
|
||
10 years ago
|
</div>
|