diff options
author | Christopher Lenz <cmlenz@apache.org> | 2008-04-05 20:17:27 +0000 |
---|---|---|
committer | Christopher Lenz <cmlenz@apache.org> | 2008-04-05 20:17:27 +0000 |
commit | 4708e70c612a797b5d15774149ed589996d0c2e3 (patch) | |
tree | 0e8cb8758f529ced20cfb64ec46ad8a05b246eb9 /share/www/browse/index.html | |
parent | c2ffeee2ad21a49a9c6d153aa89067505f1f1e26 (diff) |
Improve database listing page.
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@645171 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/browse/index.html')
-rw-r--r-- | share/www/browse/index.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/share/www/browse/index.html b/share/www/browse/index.html index bc901dcf..63ef62e6 100644 --- a/share/www/browse/index.html +++ b/share/www/browse/index.html @@ -24,6 +24,7 @@ specific language governing permissions and limitations under the License. <script src="../script/jquery.dialog.js"></script> <script src="../script/couch.js"></script> <script src="../script/browse.js"></script> + <script src="../script/pprint.js"></script> <script> var page = new CouchIndexPage(); $(document).ready(function() { @@ -47,15 +48,16 @@ specific language governing permissions and limitations under the License. <thead> <tr> <th>Name</th> - <th>Number of Documents</th> - <th>Update Seq</th> + <th class="size">Size</th> + <th class="count">Number of Documents</th> + <th class="seq">Update Seq</th> </tr> </thead> <tbody class="content"> </tbody> <tbody class="footer"> <tr> - <td colspan="3"></td> + <td colspan="4"></td> </tr> </tbody> </table> |