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