summaryrefslogtreecommitdiffstats
path: root/ecd-app-overlay/src/main/webapp/app/ecdapp/cloudify/blueprint_table.html
blob: 3ce60b92a397f427210da0e25e21544f6776ca7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<div id="page-content">

	<h1 class="heading-page" id="blueprints-page">Blueprints</h1>
	
   	<!-- show progress indicator -->
	<div ng-show="ecdapp.isDataLoading">
		<div class="span" style="margin-bottom:20px;">
    		<i class="icon-primary-spinner small" role="img" aria-label="Please wait while the content loads"></i>
    		Please wait while the content loads.
	    </div>
	</div>

	<div ng-hide="ecdapp.isDataLoading">
		
		<div id="button-search-row">
			<button class="btn btn-alt btn-small" 
				type="submit"
				ng-click="ecdapp.uploadBlueprintModalPopup();"> 
				Upload Blueprint...
			</button>
			<div style="float:right;">
		           <div class="form-field form-field__small"> 
					<input 
						type="text"
						placeholder="Search Blueprints"
						ng-model="ecdapp.searchString"/>
				</div>
			</div>
		</div>

		<div ng-show="ecdapp.isRequestFailed">
			<span class="ecd-error-message">{{ecdapp.errMsg}}</span>
		</div>
	
		<div ng-hide="ecdapp.isRequestFailed">
	
	    	<div 
	    		b2b-table 
	    		id="blueprints-table"
	    		class="b2b-table-div" 
	    		table-data="ecdapp.tableData" 
	    		search-string="ecdapp.searchString" 
	    		current-page="ecdapp.currentPageIgnored"
	    		next-sort="ecdapp.nextSortIgnored">
	
		        <table>
		        
		            <thead b2b-table-row type="header">	
						<tr id="th-header-row">
							<th b2b-table-header key="id">ID</th>
							<th b2b-table-header key="main_file_name">File Name</th>
							<th b2b-table-header key="description">Description</th>
							<th b2b-table-header key="created_at">Created Date</th>
							<th b2b-table-header key="updated_at">Updated Date</th>
				  			<th b2b-table-header sortable="false"><i class="icon-controls-gear ecd-icon-display"></i></th>
						</tr>
					</thead>
					
		            <tbody b2b-table-row type="body" row-repeat="rowData in ecdapp.tableData">
						<tr id="tr-rowData">
							<td b2b-table-body
								ng-bind="rowData.id"/>
							<td b2b-table-body
								ng-bind="rowData.main_file_name"/>
							<td b2b-table-body
								ng-bind="rowData.description"/>
							<td b2b-table-body
								ng-bind="rowData.created_at"/>
							<td b2b-table-body
								ng-bind="rowData.updated_at"/>						
							<td b2b-table-body> 
						    	<div ng-click="ecdapp.viewBlueprintModalPopup(rowData);">
						    		<a href="" title="View blueprint" class="icon-people-preview ecd-icon-action"></a>
						    	</div>
						    	<div ng-click="ecdapp.deployBlueprintModalPopup(rowData);">
						    		<a href="" title="Deploy blueprint" class="icon-datanetwork-cloudupload ecd-icon-action"></a>
						    	</div>
						    	<div ng-click="ecdapp.deleteBlueprintModalPopup(rowData);">
						    		<a href="" title="Delete blueprint" class="icon-misc-trash ecd-icon-action"></a>
						    	</div>
					     	</td>
						</tr>
					</tbody>
				</table>
			</div> 
		
		<div b2b-pagination="" total-pages="ecdapp.totalPages" 
						current-page="ecdapp.currentPageNum" click-handler="pageChangeHandler"
						role="navigation">
		</div>
							
		<div style="height: 10px;">
			<!-- space between page number and black footer -->
		</div>
		
	</div><!-- loading -->
	
</div><!-- page content -->