You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FilestorePage.html 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  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. <body>
  7. <wicket:extend>
  8. <div class="container">
  9. <div style="padding: 10px 0px 5px 0px;">
  10. <table class="filestore-status">
  11. <tr>
  12. <td><a wicket:id="filterByOk" href="#"><span wicket:id="statusOkIcon"></span><span wicket:id="statusOkCount"></span></a></td>
  13. <td><a wicket:id="filterByPending" href="#"><span wicket:id="statusPendingIcon"></span><span wicket:id="statusPendingCount"></span></a></td>
  14. <td><a wicket:id="filterByInprogress" href="#"><span wicket:id="statusInprogressIcon"></span><span wicket:id="statusInprogressCount"></span></a></td>
  15. <td><a wicket:id="filterByError" href="#"><span wicket:id="statusErrorIcon"></span><span wicket:id="statusErrorCount"></span></a></td>
  16. <td><a wicket:id="filterByDeleted" href="#"><span wicket:id="statusDeletedIcon"></span><span wicket:id="statusDeletedCount"></span></a></td>
  17. <td></td>
  18. <td><span class="fa fa-fw fa-database"></span><span wicket:id="spaceAvailable"></span></td>
  19. </tr>
  20. </table>
  21. <span style="float:right"><a href="#" wicket:id="filestoreHelp"><span wicket:id="helpMessage">[help message]</span></a></span>
  22. </div>
  23. <table class="repositories">
  24. <tr>
  25. <th><wicket:message key="gb.status">[Object status]</wicket:message></th>
  26. <th><wicket:message key="gb.statusChangedOn">[changedOn]</wicket:message></th>
  27. <th><wicket:message key="gb.statusChangedBy">[changedBy]</wicket:message></th>
  28. <th><wicket:message key="gb.oid">[Object ID]</wicket:message></th>
  29. <th><wicket:message key="gb.size">[file size]</wicket:message></th>
  30. </tr>
  31. <tbody>
  32. <tr wicket:id="fileRow">
  33. <td><center><span class="list" wicket:id="status">[Object state]</span></center></td>
  34. <td><span class="list" wicket:id="on">[changedOn]</span></td>
  35. <td><span class="list" wicket:id="by">[changedBy]</span></td>
  36. <td class="sha256"><span class="list" wicket:id="oid">[Object ID]</span></td>
  37. <td><span class="list" wicket:id="size">[file size]</span></td>
  38. </tr>
  39. </tbody>
  40. </table>
  41. <!-- pager links -->
  42. <div style="padding-bottom:5px;">
  43. <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>
  44. </div>
  45. </div>
  46. </wicket:extend>
  47. </body>
  48. </html>