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/partials/client-clustering-node.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/partials/client-clustering-node.html')
-rw-r--r-- | admin/resources/partials/client-clustering-node.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/admin/resources/partials/client-clustering-node.html b/admin/resources/partials/client-clustering-node.html new file mode 100644 index 0000000..56eb9db --- /dev/null +++ b/admin/resources/partials/client-clustering-node.html @@ -0,0 +1,37 @@ +<div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2"> + <ol class="breadcrumb"> + <li><a href="#/realms/{{realm.realm}}/clients">{{:: 'clients' | translate}}</a></li> + <li><a href="#/realms/{{realm.realm}}/clients/{{client.id}}">{{client.clientId}}</a></li> + <li><a href="#/realms/{{realm.realm}}/clients/{{client.id}}/clustering">{{:: 'cluster-nodes' | translate}}</a></li> + <li data-ng-show="create">{{:: 'add-node' | translate}}</li> + <li data-ng-hide="create">{{node.host|capitalize}}</li> + </ol> + + <h1 data-ng-show="create">{{:: 'add-node' | translate}}</h1> + <h1 data-ng-hide="create"> + {{node.host|capitalize}} + <i id="removeClient" class="pficon pficon-delete clickable" data-ng-show="client.access.configure" data-ng-click="unregisterNode()"></i> + </h1> + + <form class="form-horizontal" name="clusteringForm" novalidate kc-read-only="!client.access.configure" data-ng-show="create || registered"> + <div class="form-group"> + <label class="col-md-2 control-label" for="host">{{:: 'host' | translate}}</label> + <div class="col-sm-6"> + <input kc-no-reserved-chars ng-disabled="!create" class="form-control" type="text" id="host" name="host" data-ng-model="node.host" required> + </div> + </div> + <div ng-hide="create" class="form-group"> + <label class="col-md-2 control-label" for="lastRegistration">{{:: 'last-registration' | translate}}</label> + <div class="col-sm-6"> + {{node.lastRegistration}} + </div> + </div> + <div class="form-group"> + <div class="col-md-10 col-md-offset-2" data-ng-show="client.access.configure"> + <button data-kc-save data-ng-show="create">{{:: 'save' | translate}}</button> + </div> + </div> + </form> +</div> + +<kc-menu></kc-menu>
\ No newline at end of file |