Hybris95
2014-04-17 75796a0e2798e256a94f725961c9676746fc107a
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!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 class="container">
            <div class="markdown" style="padding: 10px 0px 5px 0px;" wicket:id="myTicketsMessage">[my tickets message]</div>
            
            <table class="tickets">
                <span wicket:id="headerContent"></span>
                <tbody>
                       <tr wicket:id="row">
                           <span wicket:id="rowContent"></span>
                       </tr>
                </tbody>
            </table>
    
            <wicket:fragment wicket:id="ticketsHeader">
                <tr>
                    <th class="left">
                        <img style="vertical-align: middle;" src="git-black-16x16.png"/>
                        <wicket:message key="gb.repository">Repository</wicket:message>
                    </th>
                    <th class="hidden-phone" ><span><wicket:message key="gb.ticket">Ticket</wicket:message></span></th>
                    <th class="hidden-phone" ><span><wicket:message key="gb.description">Description</wicket:message></span></th>
                    <th class="hidden-tablet hidden-phone right"><span><wicket:message key="gb.responsible">Responsible</wicket:message></span></th>
                </tr>
            </wicket:fragment>
                
            <wicket:fragment wicket:id="ticketRow">
                <td class="left" style="padding-left:3px;">
                    <b><span class="repositorySwatch" wicket:id="repositorySwatch"></span></b>
                    <span style="padding-left:3px;" wicket:id="repositoryName">[repository name]</span>
                </td>
                <td class="hidden-phone"><span class="list" wicket:id="ticketName">[ticket name]</span></td>
                <td class="hidden-phone"><span class="list" wicket:id="ticketDescription">[ticket description]</span></td>
                <td class="hidden-tablet hidden-phone author right"><span wicket:id="ticketResponsible">[ticket responsible]</span></td>
            </wicket:fragment>
        </div>
    </wicket:extend>
</body>
</html>