James Moger
2011-04-11 ef5c58d12ff33e4f2b83b6dcd53bdb6c96a6150d
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
29
30
31
<!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>
    <div wicket:id="adminPanel">[admin links]</div>
    
    <div class="repositories_message" wicket:id="repositoriesMessage">[repositories message]</div>
        
    <table class="repositories">
        <tr>
            <th wicket:id="orderByRepository"><wicket:message key="gb.repository">Repository</wicket:message></th>
            <th wicket:id="orderByDescription"><wicket:message key="gb.description">Description</wicket:message></th>
            <th wicket:id="orderByOwner"><wicket:message key="gb.owner">Owner</wicket:message></th>
            <th wicket:id="orderByDate"><wicket:message key="gb.lastChange">Last Change</wicket:message></th>
        </tr>
        <tbody>
               <tr wicket:id="repository">
                 <td><div class="list" wicket:id="repositoryName">[repository name]</div></td>
                 <td><div class="list" wicket:id="repositoryDescription">[repository description]</div></td>
                 <td class="author"><span wicket:id="repositoryOwner">[repository owner]</span></td>
                 <td><span wicket:id="repositoryLastChange">[last change]</span></td>
               </tr>
        </tbody>
    </table>
</wicket:extend>
</body>
</html>