about summary refs log tree commit diff
path: root/views/index.tt
blob: 58b675ae4b7644fe41439fddf361565b21704df4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div id="page">

<div id="content">
<h2>Dashboard</h2>

<h3>Projects</h3>

<ul>
  : for $projects -> $project {
  <li><a href="<: $uri_base :>project/<: $project :>"><: $project :></a></li>
  : }
</ul>

<h3>Builds pending</h3>

<ul>
  : for $builds -> $build {
  <li><a href="<: $uri_base :>task/<: $build :>"><: $build :></a></li>
  : }
</ul>
</div>
</div>