extract filex sources to separate files
[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 style="width: 40px"></th>
30                 <th>Nazwa</th>
31                 <th style="width: 120px">Rozmiar</th>
32                 <th style="width: 200px">Data</th>
33             </tr>
34         </thead>
35         <tbody></tbody>
36     </table>
37
38     <div id="no-items" class="alert alert-info" hidden>
39         <span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
40         Brak elementów
41     </div>
42
43     <div id="error" class="alert alert-danger" hidden>
44         <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
45         <span class="msg"></span>
46     </div>
47
48     <div id="spinner-overlay"></div>
49 </div>