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.

ProjectsPage.html 1.5KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <table class="repositories projectlist">
  10. <thead>
  11. <tr>
  12. <th class="left">
  13. <i class="icon-folder-close" ></i>
  14. <wicket:message key="gb.project">Project</wicket:message>
  15. </th>
  16. <th class="hidden-phone" ><span><wicket:message key="gb.description">Description</wicket:message></span></th>
  17. <th class="hidden-phone"><wicket:message key="gb.repositories">Repositories</wicket:message></th>
  18. <th><wicket:message key="gb.lastChange">Last Change</wicket:message></th>
  19. <th class="right"></th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <tr wicket:id="project">
  24. <td class="left" style="padding-left:3px;" ><span style="padding-left:3px;" wicket:id="projectTitle">[project title]</span></td>
  25. <td class="hidden-phone"><span class="list" wicket:id="projectDescription">[project description]</span></td>
  26. <td class="hidden-phone" style="padding-right:15px;"><span style="font-size:0.8em;" wicket:id="repositoryCount">[repository count]</span></td>
  27. <td><span wicket:id="projectLastChange">[last change]</span></td>
  28. <td class="rightAlign"></td>
  29. </tr>
  30. </tbody>
  31. </table>
  32. </div>
  33. </wicket:extend>
  34. </body>
  35. </html>