hostgroup-list.html 1.24 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<div class="navbar">
    <div class="navbar-inner">
        <div class="pagination pull-left">
            <ul>
                <li ng-click="prevPage()" ng-class="{disabled: page == 1}"><a href>Előző</a></li>
                <li ng-repeat="_page in pages" ng-click="setPage(_page)" ng-class="{active: _page == page}">
                <a href>{{_page}}</a>
                </li>
                <li ng-click="nextPage()" ng-class="{disabled: page == pages.length}"><a href>Next</a></li>
            </ul>
        </div>
        <form class="navbar-search" style="margin: 20px">
            <input type="text" class="search-query" placeholder="Search" ng-model="query">
        </form>
    </div>
</div>
<table class="table table-striped">
    <tr>
        <th>Név</th>
        <th>Tulajdonos</th>
        <th colspan="2">Leírás</th>
    </tr>
    <tr ng-repeat="group in getPage()">
        <td><a href="#/hostgroups/{{group.id}}">{{group.name}}</td>
        <td>{{group.owner.name}}</td>
        <td style="width: 200px;">{{group.description}}</td>
        <td>
Bence Dányi committed
28
            <a class="btn" href="#/hostgroups/{{group.id}}/">Szerkesztés</a>
29 30 31 32
            <a class="btn btn-danger" href="#/hostgroups/{{group.id}}/delete/">Törlés</a>
        </td>
    </tr>
</table>