summaryrefslogtreecommitdiff
path: root/repolist.tpl
blob: 7c7ba00286ddce3e4fa982870ac4892374e9b67a (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
<html>
	<head>
		<title>SoftGroup Interactive Subversion Access</title>
		<style type="text/css">
			body {
				font: 12px Verdana;
			}
		</style>
	</head>

	<body>
		<h1>SoftGroup Interactive Developer Services</h1>

		<p>
			Subversion access is provided to SoftGroup Interactive developers and the
			open source community. Please use it wisely. If you need access to a repository
			email the administrator. This service is monitored by using it you consent to
			that monitoring.
		</p>

		<h2>Public</h2>
		<ul>
			% for repo in unlocked_repos:
			<li><a href="${repo[1]}">${repo[0]}</a></li>
			% endfor
		</ul>
		
		<h2>Password Protected</h2>
		<ul>
			% for repo in locked_repos:
			<li><a href="${repo[1]}">${repo[0]}</a></li>
			% endfor
		</ul>
	</body>
</html>