sort button only in users grid tab

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1220289 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2011-12-17 22:43:24 +00:00
parent bd9222bd38
commit 413430a449
1 changed files with 8 additions and 7 deletions

View File

@ -87,11 +87,9 @@
<script id="usersGrid" type="text/x-jquery-tmpl">
<div class="page-header">
<h2>Users list</h2>
<button data-bind='click: sortByName' class="btn">
Sort by name
</button>
</div>
<ul id="users-view-tabs" class="tabs">
<li class="active" id="users-view-tabs-li-users-grid">
<a href="#users-view">Users</a>
@ -102,6 +100,9 @@
</ul>
<div id="users-view-tabs-content" class="tab-content">
<div id="users-view">
<button data-bind='click: sortByName' class="btn">
Sort by name
</button>
<table class="bordered-table zebra-striped" data-bind="simpleGrid: gridViewModel" id="usersTable"></table>
<div id="usersPagination"></div>
</div>