This commit is contained in:
Fabrice Marsaud
2015-07-21 14:11:24 +02:00
parent a5573e62c6
commit b1b189288e
4 changed files with 9 additions and 9 deletions

View File

@@ -450,7 +450,7 @@
span.pull-right.btn-group.quick-buttons
a(xo-click="deleteLog(message.id)")
i.fa.fa-trash-o.fa-lg(tooltip="Remove this log entry")
.center(ng-if = '(host.messages | count) > 5')
.center(ng-if = '(host.messages | count) > 5 || currentLogPage > 1')
pagination(boundary-links="true", total-items="host.messages | count", ng-model="$parent.currentLogPage", items-per-page="5", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")
.grid
//- Patches panel
@@ -490,7 +490,7 @@
//- span.pull-right.btn-group.quick-buttons
//- a(xo-click="deletePatch(patch.id)")
//- i.fa.fa-trash-o.fa-lg(tooltip="Remove this patch")
.center(ng-if = '(poolPatches | count) > 5')
.center(ng-if = '(poolPatches | count) > 5 || currentPatchPage > 1')
pagination(boundary-links="true", total-items="poolPatches | count", ng-model="$parent.currentPatchPage", items-per-page="5", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")
.grid

View File

@@ -148,5 +148,5 @@
span.pull-right.btn-group.quick-buttons
a(xo-click="deleteLog(message.id)")
i.fa.fa-trash-o.fa-lg(tooltip="Remove this log entry")
.center(ng-if = '(pool.messages | count) > 5')
.center(ng-if = '(pool.messages | count) > 5 || currentLogPage > 1')
pagination(boundary-links="true", total-items="pool.messages | count", ng-model="$parent.currentLogPage", items-per-page="5", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")

View File

@@ -148,7 +148,7 @@
a(ng-if="!(VDI.$VBDs[0] | resolve).attached", xo-click="deleteVDI(VDI.id)")
i.fa.fa-trash-o.fa-lg(tooltip="Destroy this disk")
//- TODO: Ability to create new VDIs.
.center(ng-if = '(SR.VDIs | resolve).length > 10')
.center(ng-if = '(SR.VDIs | resolve).length > 10 || currentVDIPage > 1')
pagination(boundary-links="true", total-items="(SR.VDIs | resolve).length", ng-model="$parent.currentVDIPage", items-per-page="10", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")
.btn-form(ng-show="disksForm.$visible")
p.center
@@ -206,6 +206,6 @@
| {{message.name}}
a.quick-remove(tooltip="Remove log")
i.fa.fa-trash-o.fa-fw
.center(ng-if = '(SR.messages | count) > 5')
.center(ng-if = '(SR.messages | count) > 5 || currentLogPage > 1')
pagination(boundary-links="true", total-items="SR.messages | count", ng-model="$parent.currentLogPage", items-per-page="5", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")
//- /Hosts.

View File

@@ -694,7 +694,7 @@
i.fa.fa-undo.fa-lg
a(tooltip="Remove this snapshot", xo-click="deleteSnapshot(snapshot.id)")
i.fa.fa-trash-o.fa-lg
.center(ng-if = '(VM.snapshots | count) > 5')
.center(ng-if = '(VM.snapshots | count) > 5 || currentSnapPage > 1')
pagination(boundary-links="true", total-items="VM.snapshots | count", ng-model="$parent.currentSnapPage", items-per-page="5", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")
.btn-form(ng-show="vmSnap.$visible")
p.center
@@ -724,7 +724,7 @@
span.pull-right.btn-group.quick-buttons
a(xo-click="deleteLog(message.id)")
i.fa.fa-trash-o.fa-lg(tooltip="Remove this log entry")
.center(ng-if = '(VM.messages | count) > 5')
.center(ng-if = '(VM.messages | count) > 5 || currentLogPage > 1')
pagination(boundary-links="true", total-items="VM.messages | count", ng-model="$parent.currentLogPage", items-per-page="5", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")
.grid
.panel.panel-default
@@ -750,7 +750,7 @@
span.pull-right.btn-group.quick-buttons
a(tooltip="Connect this PCI device", xo-click="connectPci(VM.id, pci.pci_id)")
i.fa.fa-link.fa-lg
.center(ng-if = '((VM.$container | resolve).$PCIs | resolve).length > 5')
.center(ng-if = '((VM.$container | resolve).$PCIs | resolve).length > 5 || currentPCIPage > 1')
pagination(boundary-links="true", total-items="((VM.$container | resolve).$PCIs | resolve).length", ng-model="$parent.currentPCIPage", items-per-page="5", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")
.panel.panel-default
.panel-heading.panel-title
@@ -767,5 +767,5 @@
span.label.label-success Attached
td(ng-if="!vgu.currentlyAttached")
span.label.label-default Not attached
.center(ng-if = '(VM.$VGPUs | resolve).length > 5')
.center(ng-if = '(VM.$VGPUs | resolve).length > 5 || currentGPUPage > 1')
pagination(boundary-links="true", total-items="(VM.$VGPUs | resolve).length", ng-model="$parent.currentGPUPage", items-per-page="5", max-size="5", class="pagination-sm", previous-text="<", next-text=">", first-text="<<", last-text=">>")