move action toolbar to full gridftp view
[qcg-portal.git] / filex / templates / filex / source.html
1 <div id="filex">
2     <div class="row">
3         <div class="col-sm-3">
4             <div id="host-controls" style="margin-top: 1px">
5                 <div class="change">
6                     <label for="host-selector" class="sr-only">Wybierz host</label>
7                     <select id="host-selector"></select>
8                 </div>
9                 <button class="btn btn-default view"></button>
10             </div>
11         </div>
12
13         <div class="col-sm-7">
14             <ol class="breadcrumb path"></ol>
15         </div>
16
17         <div class="col-sm-2 text-right">
18             <div class="btn-group" data-toggle="buttons" style="margin-top: 1px">
19                 <label class="btn btn-default">
20                     <input id="show-hidden" type="checkbox" autocomplete="off"> Pokaż ukryte
21                 </label>
22             </div>
23         </div>
24     </div>
25
26     <table class="table table-hover">
27         <thead>
28             <tr>
29                 <th class="text-center" style="width: 40px">
30                     <label for="select-all" class="sr-only">Wybierz wszystkie pliki</label>
31                     <input id="select-all" type="checkbox" autocomplete="off">
32                 </th>
33                 <th style="width: 40px"></th>
34                 <th>Nazwa</th>
35                 <th style="width: 120px">Rozmiar</th>
36                 <th style="width: 200px">Data</th>
37             </tr>
38         </thead>
39         <tbody></tbody>
40     </table>
41
42     <div id="no-items" class="alert alert-info" hidden>
43         <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
44         Brak elementów
45     </div>
46
47     <div id="error" class="alert alert-danger" hidden>
48         <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
49         <span class="msg"></span>
50     </div>
51
52     <div id="spinner-overlay"></div>
53 </div>