diff options
author | 2020-05-22 16:57:43 +0200 | |
---|---|---|
committer | 2020-05-22 16:57:43 +0200 | |
commit | a005ba8e29ff68950bc6b9c93898ddb34fb25d60 (patch) | |
tree | 24e4051efc3e19c04095aa0ce3695c5c7dd43110 /admin/resources/templates/kc-paging.html | |
download | tyrian-keycloak-theme-a005ba8e29ff68950bc6b9c93898ddb34fb25d60.tar.gz tyrian-keycloak-theme-a005ba8e29ff68950bc6b9c93898ddb34fb25d60.tar.bz2 tyrian-keycloak-theme-a005ba8e29ff68950bc6b9c93898ddb34fb25d60.zip |
Initial version of the theme
Please note that this is currently still a WIP
and likely to change a lot in future.
Signed-off-by: Max Magorsch <arzano@gentoo.org>
Diffstat (limited to 'admin/resources/templates/kc-paging.html')
-rw-r--r-- | admin/resources/templates/kc-paging.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/admin/resources/templates/kc-paging.html b/admin/resources/templates/kc-paging.html new file mode 100644 index 0000000..653e4a5 --- /dev/null +++ b/admin/resources/templates/kc-paging.html @@ -0,0 +1,25 @@ +<div ng-hide="numberOfPages < 2" class="dataTables_footer"> + <div class="dataTables_paginate paging_bootstrap_input"> + <ul class="pagination"> + <li class="first" ng-class="{disabled: !hasPrevious()}" ng-click="firstPage()"> + <span class="i fa fa-angle-double-left"></span> + </li> + <li class="prev" ng-class="{disabled: !hasPrevious()}" ng-click="previousPage()"> + <span class="i fa fa-angle-left"></span> + </li> + </ul> + <div class="pagination-input"> + <input ng-model="currentPageInput" kc-valid-page class="paginate_input" type="text"> + <span class="paginate_of">of <b>{{numberOfPages}}</b></span> + </div> + <ul class="pagination"> + <li class="next" ng-class="{disabled: !hasNext()}" ng-click="nextPage()"> + <span class="i fa fa-angle-right"></span> + </li> + <li class="last" ng-class="{disabled: !hasNext()}" ng-click="lastPage()"> + <span class="i fa fa-angle-double-right"> + </span> + </li> + </ul> + </div> +</div>
\ No newline at end of file |