blob: 063e7511ef70c012772e946691af4a9fafbb0127 (
plain)
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
|
<!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">
<table class="tickets">
<thead>
<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" colspan='2'><span><wicket:message key="gb.ticket">Ticket</wicket:message></span></th>
<th class="hidden-tablet hidden-phone"><span><wicket:message key="gb.status">Status</wicket:message></span></th>
<th class="hidden-tablet hidden-phone right"><span><wicket:message key="gb.responsible">Responsible</wicket:message></span></th>
</tr>
</thead>
<tbody>
<tr wicket:id="row">
<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 wicket:id="ticketIcon">[ticket icon]</span>
<span class="list" wicket:id="ticketTitle">[ticket title]</span>
<span style="color:#888;"> (#<span wicket:id="ticketNumber">[ticket number]</span>)</span>
</td>
<td><span class="badge badge-info" wicket:id="ticketVotes"></span></td>
<td><span wicket:id="ticketStatus"></span></td>
<td class="hidden-tablet hidden-phone author right"><span wicket:id="ticketResponsibleImg"></span><span wicket:id="ticketResponsible">[ticket responsible]</span></td>
</tr>
</tbody>
</table>
</div>
</wicket:extend>
</body>
</html>
|