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.

RepositoriesPanel.html 4.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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:panel>
  8. <div wicket:id="managementPanel">[management links]</div>
  9. <table class="repositories">
  10. <span wicket:id="headerContent"></span>
  11. <tbody>
  12. <tr wicket:id="row">
  13. <span wicket:id="rowContent"></span>
  14. </tr>
  15. </tbody>
  16. </table>
  17. <wicket:fragment wicket:id="adminLinks">
  18. <!-- page nav links -->
  19. <div class="admin_nav">
  20. <a class="btn-small" wicket:id="clearCache">
  21. <i class="icon icon-remove"></i>
  22. <wicket:message key="gb.clearCache"></wicket:message>
  23. </a>
  24. <a class="btn-small" wicket:id="newRepository" style="padding-right:0px;">
  25. <i class="icon icon-plus-sign"></i>
  26. <wicket:message key="gb.newRepository"></wicket:message>
  27. </a>
  28. </div>
  29. </wicket:fragment>
  30. <wicket:fragment wicket:id="personalLinks">
  31. <!-- page nav links -->
  32. <div class="admin_nav">
  33. <a class="btn-small" wicket:id="newRepository" style="padding-right:0px;">
  34. <i class="icon icon-plus-sign"></i>
  35. <wicket:message key="gb.newRepository"></wicket:message>
  36. </a>
  37. </div>
  38. </wicket:fragment>
  39. <wicket:fragment wicket:id="flatRepositoryHeader">
  40. <tr>
  41. <th class="left" wicket:id="orderByRepository">
  42. <img style="vertical-align: middle;" src="git-black-16x16.png"/>
  43. <wicket:message key="gb.repository">Repository</wicket:message>
  44. </th>
  45. <th class="hidden-phone" wicket:id="orderByDescription"><wicket:message key="gb.description">Description</wicket:message></th>
  46. <th class="hidden-tablet hidden-phone" wicket:id="orderByOwner"><wicket:message key="gb.owner">Owner</wicket:message></th>
  47. <th class="hidden-phone"></th>
  48. <th wicket:id="orderByDate"><wicket:message key="gb.lastChange">Last Change</wicket:message></th>
  49. <th class="right hidden-phone"></th>
  50. </tr>
  51. </wicket:fragment>
  52. <wicket:fragment wicket:id="groupRepositoryHeader">
  53. <tr>
  54. <th class="left">
  55. <img style="vertical-align: middle;" src="git-black-16x16.png"/>
  56. <wicket:message key="gb.repository">Repository</wicket:message>
  57. </th>
  58. <th class="hidden-phone" ><span><wicket:message key="gb.description">Description</wicket:message></span></th>
  59. <th class="hidden-tablet hidden-phone"><span><wicket:message key="gb.owner">Owner</wicket:message></span></th>
  60. <th class="hidden-phone"></th>
  61. <th><wicket:message key="gb.lastChange">Last Change</wicket:message></th>
  62. <th class="right hidden-phone"></th>
  63. </tr>
  64. </wicket:fragment>
  65. <wicket:fragment wicket:id="groupRepositoryRow">
  66. <td colspan="1"><span wicket:id="groupName">[group name]</span></td>
  67. <td colspan="6" style="padding: 2px;"><span class="hidden-phone" style="font-weight:normal;color:#666;" wicket:id="groupDescription">[description]</span></td>
  68. </wicket:fragment>
  69. <wicket:fragment wicket:id="repositoryRow">
  70. <td class="left" style="padding-left:3px;" ><b><span class="repositorySwatch" wicket:id="repositorySwatch"></span></b> <span style="padding-left:3px;" wicket:id="repositoryName">[repository name]</span></td>
  71. <td class="hidden-phone"><span class="list" wicket:id="repositoryDescription">[repository description]</span></td>
  72. <td class="hidden-tablet hidden-phone author"><span wicket:id="repositoryOwner">[repository owner]</span></td>
  73. <td class="hidden-phone" style="text-align: right;padding-right:10px;"><img class="inlineIcon" wicket:id="sparkleshareIcon" /><img class="inlineIcon" wicket:id="mirrorIcon" /><img class="inlineIcon" wicket:id="forkIcon" /><img class="inlineIcon" wicket:id="frozenIcon" /><img class="inlineIcon" wicket:id="federatedIcon" /><img class="inlineIcon" wicket:id="accessRestrictionIcon" /></td>
  74. <td><span wicket:id="repositoryLastChange">[last change]</span></td>
  75. <td class="rightAlign hidden-phone" style="text-align: right;padding-right:15px;"><span style="font-size:0.8em;" wicket:id="repositorySize">[repository size]</span></td>
  76. </wicket:fragment>
  77. </wicket:panel>
  78. </body>
  79. </html>