276a7cd74075c0ebfded1db0063dd6349c130eb2
[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-6">
14             <ol class="breadcrumb path"></ol>
15         </div>
16
17         <div class="col-sm-3 text-right">
18             <div class="btn-toolbar" role="toolbar" style="margin-top: 1px">
19                 <div class="btn-group" role="group">
20                     <button id="btn-refresh" type="button" class="btn btn-default" aria-label="Odśwież">
21                         <span class="glyphicon glyphicon-refresh" aria-hidden="true"></span>
22                     </button>
23                 </div>
24
25                 <div class="btn-group" data-toggle="buttons">
26                     <label class="btn btn-default">
27                         <input id="show-hidden" type="checkbox" autocomplete="off"> Pokaż ukryte
28                     </label>
29                 </div>
30
31             </div>
32         </div>
33     </div>
34
35     <table class="table table-hover">
36         <thead>
37             <tr>
38                 <th class="text-center" style="width: 40px">
39                     <label for="select-all" class="sr-only">Wybierz wszystkie pliki</label>
40                     <input id="select-all" type="checkbox" autocomplete="off">
41                 </th>
42                 <th style="width: 40px"></th>
43                 <th>Nazwa</th>
44                 <th style="width: 120px">Rozmiar</th>
45                 <th style="width: 200px">Data</th>
46             </tr>
47         </thead>
48         <tbody></tbody>
49     </table>
50
51     <div id="no-items" class="alert alert-info" hidden>
52         <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
53         Brak elementów
54     </div>
55
56     <div id="error" class="alert alert-danger" hidden>
57         <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
58         <span class="msg"></span>
59     </div>
60
61     <div id="spinner-overlay"></div>
62 </div>