Paul Martin
2016-04-07 91aad771ac411b317139bab1b862e9d9cfd4e59d
commit | author | age
bd0e83 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
PM 2 <html xmlns="http://www.w3.org/1999/xhtml"  
3       xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
4       xml:lang="en"  
5       lang="en"> 
6
7 <body>
8 <wicket:extend>
9 <div class="container">
10     
91aad7 11     <div style="padding: 10px 0px 5px 0px;">
PM 12         <table class="filestore-status">
13             <tr>
14                 <td><a wicket:id="filterByOk" href="#"><span wicket:id="statusOkIcon"></span><span wicket:id="statusOkCount"></span></a></td>
15                 <td><a wicket:id="filterByPending" href="#"><span wicket:id="statusPendingIcon"></span><span wicket:id="statusPendingCount"></span></a></td>
16                 <td><a wicket:id="filterByInprogress" href="#"><span wicket:id="statusInprogressIcon"></span><span wicket:id="statusInprogressCount"></span></a></td>
17                 <td><a wicket:id="filterByError" href="#"><span wicket:id="statusErrorIcon"></span><span wicket:id="statusErrorCount"></span></a></td>
18                 <td><a wicket:id="filterByDeleted" href="#"><span wicket:id="statusDeletedIcon"></span><span wicket:id="statusDeletedCount"></span></a></td>
19                 <td></td>
20                 <td><span class="fa fa-fw fa-database"></span><span wicket:id="spaceAvailable"></span></td>
21             </tr>
22         </table>
bd0e83 23         <span style="float:right"><a href="#" wicket:id="filestoreHelp"><span wicket:id="helpMessage">[help message]</span></a></span>
PM 24     </div>
25     
26     <table class="repositories">
27         <tr>
28             <th><wicket:message key="gb.status">[Object status]</wicket:message></th>
29             <th><wicket:message key="gb.statusChangedOn">[changedOn]</wicket:message></th>
30             <th><wicket:message key="gb.statusChangedBy">[changedBy]</wicket:message></th>
31             <th><wicket:message key="gb.oid">[Object ID]</wicket:message></th>
32             <th><wicket:message key="gb.size">[file size]</wicket:message></th>
33         </tr>
34         <tbody>        
35                <tr wicket:id="fileRow">
36                    <td><center><span class="list" wicket:id="status">[Object state]</span></center></td>
37                    <td><span class="list" wicket:id="on">[changedOn]</span></td>
38                    <td><span class="list" wicket:id="by">[changedBy]</span></td>
39                    <td class="sha256"><span class="list" wicket:id="oid">[Object ID]</span></td>
40                    <td><span class="list" wicket:id="size">[file size]</span></td>
41                </tr>
42         </tbody>
43     </table>
91aad7 44     
PM 45     <!-- pager links -->
46     <div style="padding-bottom:5px;">
47         <a wicket:id="firstPageBottom"><wicket:message key="gb.pageFirst"></wicket:message></a> | <a wicket:id="prevPageBottom">&laquo; <wicket:message key="gb.pagePrevious"></wicket:message></a> | <a wicket:id="nextPageBottom"><wicket:message key="gb.pageNext"></wicket:message> &raquo;</a> 
48     </div>
bd0e83 49 </div>
91aad7 50
PM 51     
bd0e83 52 </wicket:extend>
PM 53 </body>
54 </html>