James Moger
2011-04-07 cebf455f3fd54b72e530942f308097ec54b408cd
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
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" >
<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">Repository</th>
            <th wicket:id="orderByDescription">Description</th>
            <th wicket:id="orderByOwner">Owner</th>
            <th wicket:id="orderByDate">Last Change</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>