summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/wicket/pages/SummaryPage.html
blob: 6dbcfa225744ce1315ad408569f3648defde12d6 (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
43
<!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 style="clear:both;">
		<!-- Repository Activity Chart -->	
		<div style="float:right;">
			<img class="activityGraph" wicket:id="commitsChart" />
		</div>	
	
		<!-- Repository info -->
		<div> 
			<table class="plain">
				<tr><th><wicket:message key="gb.description">[description]</wicket:message></th><td><span wicket:id="repositoryDescription">[repository description]</span></td></tr>
				<tr><th><wicket:message key="gb.owner">[owner]</wicket:message></th><td><span wicket:id="repositoryOwner">[repository owner]</span></td></tr>
				<tr><th><wicket:message key="gb.lastChange">[last change]</wicket:message></th><td><span wicket:id="repositoryLastChange">[repository last change]</span></td></tr>
				<tr><th><wicket:message key="gb.stats">[stats]</wicket:message></th><td><span wicket:id="repositoryStats">[repository stats]</span></td></tr>
				<tr><th><wicket:message key="gb.url">[URL]</wicket:message></th><td><span wicket:id="repositoryCloneUrl">[repository clone url]</span></td></tr>
			</table>
		</div>
	</div>

	<!-- commits -->
	<div style="padding-bottom:10px;" wicket:id="commitsPanel">[commits panel]</div>	

	<!-- branches -->
	<div style="padding-bottom:10px;width:400px; float:left;">
		<div wicket:id="branchesPanel">[branches panel]</div>
	</div>

	<!-- tags -->
	<div style="padding-bottom:10px;margin-left:405px;">
		<div wicket:id="tagsPanel">[tags panel]</div>
	</div>
	
</wicket:extend>	
</body>
</html>