Revision 50469
Added by Myrto Koukouli over 6 years ago
compatibility-validation-history.component.html | ||
---|---|---|
20 | 20 |
</div> |
21 | 21 |
</div> |
22 | 22 |
<div class="uk-margin-bottom uk-width-1-1 filters"> |
23 |
<div class="links uk-inline"></div> |
|
24 |
<div class="show-options uk-inline" style="float: left;"> |
|
23 |
<div class="links uk-inline"> |
|
25 | 24 |
<div class="filterLabel" style="display: inline;">Filter validation jobs:</div> |
26 | 25 |
<a class="active" href="#">All jobs (0)</a> |
27 | 26 |
<a href="#">successfull (0)</a> |
... | ... | |
31 | 30 |
<div class="show-options uk-inline" style="float: right;"> |
32 | 31 |
<div class="filterLabel" style="display: inline;">Jobs per page:</div> |
33 | 32 |
<div class="inlineBlock"> |
34 |
<select class="form-control">
|
|
35 |
<option value="10">10</option> |
|
33 |
<select #itemsPerPage class="form-control" (change)="getItemsPerPage(itemsPerPage.value)">
|
|
34 |
<option value="10" selected>10</option>
|
|
36 | 35 |
<option value="25">25</option> |
37 | 36 |
<option value="50">50</option> |
38 | 37 |
<option value="100">100</option> |
... | ... | |
45 | 44 |
<div> |
46 | 45 |
<ul class="uk-pagination"> |
47 | 46 |
<li class="uk-disabled"> |
48 |
<a class="disabled" href="#" disabled="">
|
|
49 |
<span class="uk-margin-small-right uk-pagination-previous uk-icon" uk-pagination-previous="">
|
|
47 |
<a class="disabled" href="#" > |
|
48 |
<span class="uk-margin-small-right uk-pagination-previous uk-icon" uk-pagination-previous> |
|
50 | 49 |
<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg" icon="pagination-previous" ratio="1"></svg> |
51 | 50 |
</span> |
52 | 51 |
Previous |
53 | 52 |
</a> |
54 | 53 |
</li> |
55 | 54 |
<li class="uk-margin-auto-left uk-disabled"> |
56 |
<a class="disabled" href="#" disabled="">
|
|
55 |
<a class="disabled" href="#" > |
|
57 | 56 |
Next |
58 |
<span class="uk-margin-small-left uk-pagination-next uk-icon" uk-pagination-next="">
|
|
57 |
<span class="uk-margin-small-left uk-pagination-next uk-icon" uk-pagination-next> |
|
59 | 58 |
<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg" icon="pagination-next" ratio="1"></svg> |
60 | 59 |
</span> |
61 | 60 |
</a> |
... | ... | |
66 | 65 |
<div> |
67 | 66 |
<div> |
68 | 67 |
<div class="uk-overflow-auto uk-scrollspy-inview uk-animation-slide-top-medium uk-margin-top uk-margin-bottom"> |
69 |
<table class="uk-table uk-table-middle jobs-list"> |
|
68 |
<table class="uk-table uk-table-stripped uk-table-middle jobs-list">
|
|
70 | 69 |
<thead> |
71 | 70 |
<tr> |
71 |
<th>Repository</th> |
|
72 | 72 |
<th>Validation Type</th> |
73 | 73 |
<th>Status</th> |
74 | 74 |
<th>Score</th> |
75 | 75 |
<th>Started</th> |
76 |
<th>Repository</th> |
|
77 | 76 |
<th>Guidelines</th> |
78 | 77 |
<th>Actions</th> |
79 | 78 |
<th></th> |
80 | 79 |
</tr> |
81 | 80 |
</thead> |
82 | 81 |
<tbody> |
83 |
<tr class="el-item odd">
|
|
84 |
<td class="uk-table-shrink"></td>
|
|
85 |
<td class="uk-table-shrink"></td>
|
|
86 |
<td class="uk-table-shrink"></td>
|
|
87 |
<td class="uk-table-shrink"></td>
|
|
88 |
<td class="uk-table-shrink"></td>
|
|
89 |
<td class="uk-table-shrink"></td>
|
|
90 |
<td class="uk-table-shrink"></td>
|
|
91 |
<td class="uk-table-shrink"></td>
|
|
92 |
</tr> |
|
82 |
<tr *ngFor="let job of jobsOfUser">
|
|
83 |
<td>{{ job.repository }}</td>
|
|
84 |
<td>{{ job.validation[0].type }}<br>{{ job.validation[1].type }}</td>
|
|
85 |
<td>{{ job.validation[0].status }}<br>{{ job.validation[1].status }}</td>
|
|
86 |
<td>{{ job.validation[0].score }}<br>{{ job.validation[1].score }}</td>
|
|
87 |
<td>{{ job.started }}</td>
|
|
88 |
<td>{{ job.guidelines }}</td>
|
|
89 |
<td></td>
|
|
90 |
<td></td>
|
|
91 |
</tr>
|
|
93 | 92 |
</tbody> |
94 | 93 |
</table> |
95 | 94 |
</div> |
... | ... | |
98 | 97 |
<div> |
99 | 98 |
<ul class="uk-pagination"> |
100 | 99 |
<li class="uk-disabled"> |
101 |
<a class="disabled" href="#" disabled="">
|
|
102 |
<span class="uk-margin-small-right uk-pagination-previous uk-icon" uk-pagination-previous="">
|
|
100 |
<a class="disabled" href="#" > |
|
101 |
<span class="uk-margin-small-right uk-pagination-previous uk-icon" uk-pagination-previous> |
|
103 | 102 |
<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg" icon="pagination-previous" ratio="1"></svg> |
104 | 103 |
</span> |
105 | 104 |
Previous |
106 | 105 |
</a> |
107 | 106 |
</li> |
108 | 107 |
<li class="uk-margin-auto-left uk-disabled"> |
109 |
<a class="disabled" href="#" disabled="">
|
|
108 |
<a class="disabled" href="#" > |
|
110 | 109 |
Next |
111 | 110 |
<span class="uk-margin-small-left uk-pagination-next uk-icon" uk-pagination-next=""> |
112 | 111 |
<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg" icon="pagination-next" ratio="1"></svg> |
Also available in: Unified diff
continued with compatibility validate