James Moger
2011-04-23 f5d0ad7e706f1743b01dcc71f42112d533de89c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  
      xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
      xml:lang="en"  
      lang="en"> 
 
<body>
<wicket:extend>
    <!-- Push content down to preserve header image -->
    <div style="padding-top:20px"></div>
    
    <!-- Repository Table -->
    <form wicket:id="editForm">
        <table class="plain">
            <tbody>
                <tr><th>Name</th><td><input type="text" wicket:id="name" size="30" /></td></tr>
                <tr><th>Description</th><td><input type="text" wicket:id="description" size="80" /></td></tr>
                <tr><th>Owner</th><td><input type="text" wicket:id="owner" size="30" /></td></tr>
                <tr><th>Use Git:Blit Tickets</th><td><input type="checkbox" wicket:id="useTickets"/>distributed Git:Blit ticketing</td></tr>
                <tr><th>Use Git:Blit Docs</th><td><input type="checkbox" wicket:id="useDocs"/>distributed Git:Blit documentation</td></tr>
                <tr><th>Named User Access</th><td><input type="checkbox" wicket:id="useNamedUsers"/>not implemented</td></tr>
                <tr><td colspan="2"><input type="submit" value="Submit"/></td></tr>
            </tbody>
        </table>
    </form>    
</wicket:extend>
</body>
</html>