You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ol...@apache.org on 2011/12/17 23:43:25 UTC

svn commit: r1220289 - /archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-grids.html

Author: olamy
Date: Sat Dec 17 22:43:24 2011
New Revision: 1220289

URL: http://svn.apache.org/viewvc?rev=1220289&view=rev
Log:
sort button only in users grid tab

Modified:
    archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-grids.html

Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-grids.html
URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-grids.html?rev=1220289&r1=1220288&r2=1220289&view=diff
==============================================================================
--- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-grids.html (original)
+++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/user-grids.html Sat Dec 17 22:43:24 2011
@@ -87,11 +87,9 @@
 
 
 <script id="usersGrid"  type="text/x-jquery-tmpl">
-    <h2>Users list</h2>
-
-    <button data-bind='click: sortByName'  class="btn">
-        Sort by name
-    </button>
+    <div class="page-header">
+      <h2>Users list</h2>
+    </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,8 +100,11 @@
     </ul>
     <div id="users-view-tabs-content" class="tab-content">
       <div id="users-view">
-          <table class="bordered-table zebra-striped" data-bind="simpleGrid: gridViewModel" id="usersTable"></table>
-          <div id="usersPagination"></div>
+        <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>
       <div id="createUserForm"></div>
     </div>