Add UI for editing labels on a manifest
This commit is contained in:
parent
46d1532f0e
commit
cfb81c977f
7 changed files with 154 additions and 4 deletions
|
@ -18,6 +18,27 @@
|
|||
</div><!-- /.modal-dialog -->
|
||||
</div><!-- /.modal -->
|
||||
|
||||
<!-- Edit Labels Dialog -->
|
||||
<div class="cor-confirm-dialog"
|
||||
dialog-context="editLabelsInfo"
|
||||
dialog-action="editLabels(info, callback)"
|
||||
dialog-title="Edit Manifest Labels"
|
||||
dialog-action-title="Edit Labels">
|
||||
|
||||
<div class="cor-loader" ng-if="editLabelsInfo.loading"></div>
|
||||
<div ng-if="!editLabelsInfo.loading && editLabelsInfo.labels">
|
||||
<div><strong>Read-only labels:</strong></div>
|
||||
<div class="label-section">
|
||||
<div class="label-list" labels="editLabelsInfo.readonly_labels"></div>
|
||||
</div>
|
||||
|
||||
<div><strong>Mutable labels:</strong></div>
|
||||
<div class="label-section">
|
||||
<div class="label-input" labels="editLabelsInfo.mutable_labels"
|
||||
updated-labels="editLabelsInfo.updated_labels"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Add Tag Dialog -->
|
||||
<div class="modal fade" id="createOrMoveTagModal">
|
||||
|
|
Reference in a new issue