realm-list.html

20 lines | 457 B Blame History Raw Download
<div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">

    <h1>Realms</h1>

    <table class="datatable table table-striped table-bordered">
        <thead>
            <tr>
                <th>Realm</th>
            </tr>
        </thead>
        <tbody>
            <tr data-ng-repeat="r in realms">
                <td><a href="#/realms/{{r.realm}}">{{r.realm}}</a></td>
            </tr>
        </tbody>
    </table>
</div>


<kc-menu></kc-menu>