summaryrefslogtreecommitdiff
path: root/repolist.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'repolist.tpl')
-rw-r--r--repolist.tpl36
1 files changed, 36 insertions, 0 deletions
diff --git a/repolist.tpl b/repolist.tpl
new file mode 100644
index 0000000..7c7ba00
--- /dev/null
+++ b/repolist.tpl
@@ -0,0 +1,36 @@
1<html>
2 <head>
3 <title>SoftGroup Interactive Subversion Access</title>
4 <style type="text/css">
5 body {
6 font: 12px Verdana;
7 }
8 </style>
9 </head>
10
11 <body>
12 <h1>SoftGroup Interactive Developer Services</h1>
13
14 <p>
15 Subversion access is provided to SoftGroup Interactive developers and the
16 open source community. Please use it wisely. If you need access to a repository
17 email the administrator. This service is monitored by using it you consent to
18 that monitoring.
19 </p>
20
21 <h2>Public</h2>
22 <ul>
23 % for repo in unlocked_repos:
24 <li><a href="${repo[1]}">${repo[0]}</a></li>
25 % endfor
26 </ul>
27
28 <h2>Password Protected</h2>
29 <ul>
30 % for repo in locked_repos:
31 <li><a href="${repo[1]}">${repo[0]}</a></li>
32 % endfor
33 </ul>
34 </body>
35</html>
36