summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/wicket/pages/TicGitTicketPage.html
blob: b66bf505cc650c6bff50f982dc5d2cfa8c3bc639 (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
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
	<!-- page header -->
	<div wicket:id="pageHeader"></div>

	<!-- page nav links -->	
	<div wicket:id="pageLinks"></div>
	
	<!-- ticket title -->
	<div style="font-size:150%;padding-top:5px;" wicket:id="ticketTitle"></div>
		
	<!-- ticket info -->
	<table class="plain">
		<tr><th>ticket id</th><td class="sha1"><span wicket:id="ticketId">Message goes here</span></td></tr>
		<tr><th>assigned</th><td><span wicket:id=ticketHandler>Message goes here</span></td></tr>
		<tr><th>open date</th><td><span wicket:id="ticketOpenDate">Message goes here</span></td></tr>
		<tr><th>state</th><td><span wicket:id="ticketState">Message goes here</span></td></tr>
		<tr><th>tags</th><td><span wicket:id="ticketTags">Message goes here</span></td></tr>
	</table>
	
	<!-- comments header -->
	<div class="header">Comments</div>
	
	<!-- comments -->
	<table style="width:100%;" class="pretty">
		<tbody>
			<tr wicket:id="comment">
         		<td class="date"><span wicket:id="commentDate"></span></td>
         		<td><b><div wicket:id="commentAuthor"></div></b></td>
         		<td><div wicket:id="commentText"></div></td>
       		</tr>
       	</tbody>
    </table>
    
	<!-- footer -->
	<div wicket:id="pageFooter"></div>
</body>
</html>