aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app/vid/scripts/view-models/previousVersionDialog.htm
diff options
context:
space:
mode:
authorOfir Sonsino <os0695@att.com>2017-09-20 13:20:42 +0300
committerOfir Sonsino <os0695@att.com>2017-09-20 13:37:03 +0300
commit9dfd7e28c1eb348fcb4a2de8c6faae2a01b34942 (patch)
treec273862f59b0b64c19ccfea5f59ab574071cb323 /vid-app-common/src/main/webapp/app/vid/scripts/view-models/previousVersionDialog.htm
parentc3722d135481cfab5978c84853d8229d1e7d9cb3 (diff)
Global Read only role, Support VID specific Roles
Issue-ID: VID-46 , VID-47 Change-Id: Ib100d20ac40a65d39e27a6e2741b19a173a2b8ea Signed-off-by: Ofir Sonsino <os0695@att.com>
Diffstat (limited to 'vid-app-common/src/main/webapp/app/vid/scripts/view-models/previousVersionDialog.htm')
-rw-r--r--vid-app-common/src/main/webapp/app/vid/scripts/view-models/previousVersionDialog.htm48
1 files changed, 48 insertions, 0 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/view-models/previousVersionDialog.htm b/vid-app-common/src/main/webapp/app/vid/scripts/view-models/previousVersionDialog.htm
new file mode 100644
index 000000000..2912c70bc
--- /dev/null
+++ b/vid-app-common/src/main/webapp/app/vid/scripts/view-models/previousVersionDialog.htm
@@ -0,0 +1,48 @@
+<div ng-controller="previousVersionDialogController">
+
+ <div ng-show="isTableDialogVisible">
+ <div class="titleLine">
+ <img src="app/vid/images/spinner.gif"
+ ngx-visible="{{isTableSpinnerVisible}}"></img>
+ <h3>{{componentName}} - {{createType}}</h3>
+ </div>
+
+ <div class="error" ng-show="isTableErrorVisible">
+ <img src="app/vid/images/error.png"></img>{{error}}
+ </div>
+ <table att-table table-data="tableData" view-per-page="viewPerPage" current-page="currentPage" search-category="searchCategory" search-string="searchString" total-page="totalPage">
+ <thead att-table-row type="header">
+ <tr>
+ <th att-table-header key="action">Action</th>
+ <th att-table-header key="uuid">UUID</th>
+ <th att-table-header key="invariantUUID">Invariant UUID</th>
+ <th att-table-header key="name">Name</th>
+ <th att-table-header key="version">Version</th>
+ <th att-table-header key="category">Category</th>
+ <th att-table-header key="distributionStatus">Distribution Status</th>
+ <th att-table-header key="lastUpdaterUserId">Last Updated By</th>
+ <th att-table-header key="toscaModelUrl">Tosca Model</th>
+ </tr>
+ </thead>
+ <tbody att-table-row type="body" row-repeat="row in tableData">
+ <tr>
+ <td att-table-body ><button type=button ng-click="deployService(row)" att-button btn-type="{{deployButtonType}}" size="small">Deploy</button></td>
+ <td att-table-body ng-bind="row['uuid']"></td>
+ <td att-table-body ng-bind="row['invariantUUID']"></td>
+ <td att-table-body ng-bind="row['name']"></td>
+ <td att-table-body ng-bind="row['version']"></td>
+ <td att-table-body ng-bind="row['category']"></td>
+ <td att-table-body ng-bind="row['distributionStatus']"></td>
+ <td att-table-body ng-bind="row['lastUpdaterUserId']"></td>
+ <td att-table-body ng-bind="row['toscaModelUrl']"></td>
+ </tr>
+ </tbody>
+ </table>
+
+
+ <div class="buttonRow">
+ <button type="button" ng-click="cancelTable();" att-button
+ btn-type="primary" size="small">Cancel</button>
+ </div>
+ </div>
+</div>