about summary refs log tree commit diff
path: root/views/index.tt
blob: 6a79821b8679c68062e79dc0e8684b3f5075fa29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>