-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistOmic.php
102 lines (82 loc) · 3.77 KB
/
listOmic.php
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
99
100
101
102
<?php include('tools/head.php'); ?>
<div ng-controller="AppCtrl" layout="column" ng-cloak>
<button type="button" class="btn btn-default" ng-click="showFilters= (!showFilters)">Show filters</button>
<?php include ('tools/filtersTools.php'); ?>
<ul class="nav nav-tabs tabsGut" ng-show="!filterSearchActiveTool">
<li ng-repeat="(key, value) in results.dataInfo">
<a data-toggle="tab" ng-href="#{{key}}"> {{value.nameFamily}}</a>
</li>
</ul>
<div class="tab-content">
<div ng-repeat="(key, value) in results.dataInfo"
id="{{key}}" class="tab-pane fade in active">
<div ng-show="results.successInfo">
<h2 ng-show="!filterSearchActiveTool"> {{ value.message }} </h2>
<h2 ng-show="filterSearchActiveTool"> {{ resultsFilterTypeMessageTool }} results have been found</h2>
<table class="table table-bordered">
<thead>
<tr>
<th ng-show="tableTool">Tool</th>
<th ng-show="tableOsInfrastructure">OS Infrastructure</th>
<th ng-show="tablePublicPrivate">Public/Private</th>
<th ng-show="tableLanguage">Language</th>
<th ng-show="tableInputs">Inputs</th>
<th ng-show="tableOutputs">Outputs</th>
<th ng-show="tableMainFeatures">Main Features</th>
<th ng-show="tableToolPurpose">Purpose</th>
<th ng-show="tableToolStatus">Status</th>
</tr>
</thead>
<tbody ng-show="!filterSearchActiveTool">
<tr ng-repeat="info in value.info" >
<td ng-show="tableTool">
<a ng-href="{{ info.url }}" target="_blank"> {{ info.tool }} </a>
</td>
<td ng-show="tableOsInfrastructure"> {{ info.osInfrastructure }} </td>
<td ng-show="tablePublicPrivate"> {{ info.publicPrivate }} </td>
<td ng-show="tableLanguage"> {{ info.language }} </td>
<td ng-show="tableInputs"> {{ info.inputs }} </td>
<td ng-show="tableOutputs"> {{ info.outputs }} </td>
<td ng-show="tableMainFeatures"> {{ info.mainFeatures }} </td>
<td ng-show="tableToolPurpose"> {{ info.purpose }} </td>
<td ng-show="tableToolStatus">
<div ng-show="info.status == 1">
<img src="images/on.svg" />
</div>
<div ng-show="info.status == 0">
<img src="images/off.svg" />
</div>
</td>
</tr>
</tbody>
<tbody ng-show="filterSearchActiveTool">
<tr ng-repeat="filteredTool in resultsFilterTypeTool">
<td ng-show="tableTool">
<a ng-href="{{ filteredTool.url }}" target="_blank">
{{ filteredTool.tool }}
</a>
</td>
<td ng-show="tableOsInfrastructure"> {{ info.osInfrastructure }} </td>
<td ng-show="tablePublicPrivate"> {{ filteredTool.publicPrivate }} </td>
<td ng-show="tableLanguage"> {{ filteredTool.language }} </td>
<td ng-show="tableInputs"> {{ filteredTool.inputs }} </td>
<td ng-show="tableOutputs"> {{ filteredTool.outputs }} </td>
<td ng-show="tableMainFeatures"> {{ filteredTool.mainFeatures }} </td>
<td ng-show="tableToolPurpose"> {{ filteredTool.purpose }} </td>
<td ng-show="tableToolStatus">
<div ng-show="filteredTool.status == 1">
<img src="images/on.svg" />
</div>
<div ng-show="filteredTool.status == 0">
<img src="images/off.svg" />
</div>
</td>
</tr>
</tbody>
</table>
</div><!-- ng show database -->
<div ng-show="!results.successInfo"> Loading....</div>
</div><!-- end of tab content tool -->
</div><!-- end of tab -->
</div></div></div>
<?php include('tools/footer.php'); ?>