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.

EditRepositoryPage.html 1.4KB

12345678910111213141516171819202122232425262728
  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. <!-- Push content down to preserve header image -->
  9. <div style="padding-top:20px"></div>
  10. <!-- Repository Table -->
  11. <form wicket:id="editForm">
  12. <table class="plain">
  13. <tbody>
  14. <tr><th>Name</th><td class="edit"><input type="text" wicket:id="name" size="30" tabindex="1" /></td></tr>
  15. <tr><th>Description</th><td class="edit"><input type="text" wicket:id="description" size="80" tabindex="2" /></td></tr>
  16. <tr><th>Owner</th><td class="edit"><input type="text" wicket:id="owner" size="30" tabindex="3" /></td></tr>
  17. <tr><th>Group</th><td class="edit"><input type="text" wicket:id="group" size="30" tabindex="4" /></td></tr>
  18. <tr><th>Enable Tickets</th><td class="edit"><input type="checkbox" wicket:id="useTickets" tabindex="5" /> <i>distributed Ticgit ticketing</i></td></tr>
  19. <tr><th>Enable Docs</th><td class="edit"><input type="checkbox" wicket:id="useDocs" tabindex="6" /> <i>distributed Markdown documentation</i></td></tr>
  20. <tr><td class="edit" colspan="2"><input type="submit" value="Submit" tabindex="7" /></td></tr>
  21. </tbody>
  22. </table>
  23. </form>
  24. </wicket:extend>
  25. </body>
  26. </html>