session-realm.html

32 lines | 1.022 kB Blame History Raw Download
<div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">
    <h1>Sessions</h1>

    <ul class="nav nav-tabs">
        <li class="active"><a href="#/realms/{{realm.realm}}/sessions/realm">Realm Sessions</a></li>
        <li><a href="#/realms/{{realm.realm}}/sessions/revocation">Revocation</a></li>
    </ul>

    <table class="table table-striped table-bordered">
        <thead>
        <tr>
            <th class="kc-table-actions" colspan="3">
                <div class="pull-right">
                    <a class="btn btn-primary" ng-click="logoutAll()">Logout All</a>
                </div>
            </th>
        </tr>
        <tr>
            <th>Client</th>
            <th>Active Sessions</th>
        </tr>
        </thead>
        <tbody>
        <tr data-ng-repeat="data in stats">
            <td><a href="#/realms/{{realm.realm}}/clients/{{data.id}}/sessions">{{data.clientId}}</a></td>
            <td>{{data.active}}</td>
        </tr>
        </tbody>
    </table>
</div>

<kc-menu></kc-menu>