James Moger
2011-04-04 5fe7df81eb38dc66f2cfc4bf1973863a19f55cf2
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
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
    <div wicket:id="pageHeader"></div>
    <div class="index_include" wicket:id="indexInclude"></div>
    
    <table class="project_list">
        <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>
            <th></th>
        </tr>
        <tbody>
               <tr wicket:id="repository">
                 <td><div class="list" wicket:id="repositoryName"></div></td>
                 <td><div class="list" wicket:id="repositoryDescription"></div></td>
                 <td><i><span wicket:id="repositoryOwner"></span></i></td>
                 <td><span wicket:id="repositoryLastChange"></span></td>
                 <td></td>
               </tr>
        </tbody>
    </table>
    
    <!-- footer -->
    <div wicket:id="pageFooter"></div>
</body>
</html>