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.

SummaryPage.html 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <!-- page nav links -->
  9. <div wicket:id="pageLinks">[page links]</div>
  10. <div style="clear:both;">
  11. <!-- Repository Activity Chart -->
  12. <div style="float:right;">
  13. <img class="activityGraph" wicket:id="commitsChart" />
  14. </div>
  15. <!-- Repository info -->
  16. <div>
  17. <table class="plain">
  18. <tr><th><wicket:message key="gb.description">[description]</wicket:message></th><td><span wicket:id="repositoryDescription">[repository description]</span></td></tr>
  19. <tr><th><wicket:message key="gb.owner">[owner]</wicket:message></th><td><span wicket:id="repositoryOwner">[repository owner]</span></td></tr>
  20. <tr><th><wicket:message key="gb.lastChange">[last change]</wicket:message></th><td><span wicket:id="repositoryLastChange">[repository last change]</span></td></tr>
  21. <tr><th><wicket:message key="gb.stats">[stats]</wicket:message></th><td><span wicket:id="repositoryStats">[repository stats]</span></td></tr>
  22. <tr><th><wicket:message key="gb.url">[URL]</wicket:message></th><td><span wicket:id="repositoryCloneUrl">[repository clone url]</span></td></tr>
  23. </table>
  24. </div>
  25. </div>
  26. <!-- commits -->
  27. <div style="padding-bottom:10px;" wicket:id="commitsPanel">[commits panel]</div>
  28. <!-- branches -->
  29. <div style="padding-bottom:10px;width:400px; float:left;">
  30. <div wicket:id="branchesPanel">[branches panel]</div>
  31. </div>
  32. <!-- tags -->
  33. <div style="padding-bottom:10px;margin-left:405px;">
  34. <div wicket:id="tagsPanel">[tags panel]</div>
  35. </div>
  36. </wicket:extend>
  37. </body>
  38. </html>