tahoe-lafs/src/allmydata/web/directory.xhtml
Tony Arcieri c1f3008d03 Redesigned directory pages (WIP)
This is an initial conversion of the directory pages from the old style
to the new style which is based on Twitter Bootstrap.

Still some remaining work to be done. You can see a screenshot here:

http://i.imgur.com/MPEngGx.png
2014-09-02 13:55:12 -07:00

85 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en" xmlns:n="http://nevow.com/ns/nevow/0.1">
<head>
<meta charset="utf-8"/>
<title n:render="title"></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="Tahoe-LAFS is a free and open cloud storage engine"/>
<meta name="author" content="Tahoe-LAFS"/>
<!-- Le styles -->
<link href="/css/bootstrap.css" rel="stylesheet"/>
<link href="/css/bootstrap-responsive.css" rel="stylesheet"/>
<link href="/css/new-tahoe.css" rel="stylesheet"/>
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="/icon.png" />
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="/"><img src="/img/logo.png" alt="Tahoe-LAFS"/></a>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="toolbar-item" n:render="welcome" />
<li class="toolbar-item"><a href=".">Refresh</a></li>
<li class="toolbar-item"><a href="?t=info">More info on this directory</a></li>
<li class="toolbar-item" n:render="show_readonly" />
</ul>
</div>
</div>
<div class="span9">
<h1 n:render="header"></h1>
<div n:render="try_children">
<table class="table table-striped tahoe-directory" n:render="sequence" n:data="children">
<tr n:pattern="header">
<th>Type</th>
<th>Filename</th>
<th>Size</th>
<th>Times</th>
<th></th>
<th></th>
<th></th>
</tr>
<tr n:pattern="item" n:render="row">
<td><n:slot name="type"/></td>
<td><n:slot name="filename"/></td>
<td align="right"><n:slot name="size"/></td>
<td><n:slot name="times"/></td>
<td><n:slot name="unlink"/></td>
<td><n:slot name="rename"/></td>
<td><n:slot name="info"/></td>
</tr>
<tr n:pattern="empty"><td colspan="9" class="empty-marker">This directory is empty.</td></tr>
</table>
</div>
<div class="tahoe-directory-footer">
<div n:render="forms"/>
<div class="results" n:render="results"/>
</div>
</div><!--/span-->
</div><!--/row-->
<hr/>
<footer>
<p>&#169; <a href="http://tahoe-lafs.org/">Tahoe-LAFS 2013</a></p>
</footer>
</div><!--/.fluid-container-->
</body>
</html>