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.

RepositoriesPage.html 1012B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <html xmlns="http://www.w3.org/1999/xhtml" >
  3. <body>
  4. <wicket:extend>
  5. <div wicket:id="adminPanel">[admin links]</div>
  6. <div class="repositories_message" wicket:id="repositoriesMessage">[repositories message]</div>
  7. <table class="repositories">
  8. <tr>
  9. <th wicket:id="orderByRepository">Repository</th>
  10. <th wicket:id="orderByDescription">Description</th>
  11. <th wicket:id="orderByOwner">Owner</th>
  12. <th wicket:id="orderByDate">Last Change</th>
  13. </tr>
  14. <tbody>
  15. <tr wicket:id="repository">
  16. <td><div class="list" wicket:id="repositoryName">[repository name]</div></td>
  17. <td><div class="list" wicket:id="repositoryDescription">[repository description]</div></td>
  18. <td class="author"><span wicket:id="repositoryOwner">[repository owner]</span></td>
  19. <td><span wicket:id="repositoryLastChange">[last change]</span></td>
  20. </tr>
  21. </tbody>
  22. </table>
  23. </wicket:extend>
  24. </body>
  25. </html>