about summary refs log tree commit diff
path: root/views/project
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-09-23 22:09:36 +0200
committerfranck cuny <franck@lumberjaph.net>2010-09-23 22:09:36 +0200
commit585ce5b679406ffe8644b23e3a267d7af8e3a5de (patch)
tree27dff9a966b9c265e929330b48314f1c38d48428 /views/project
parentignore logs (diff)
downloadjitterbug-585ce5b679406ffe8644b23e3a267d7af8e3a5de.tar.gz
initial import
Diffstat (limited to '')
-rw-r--r--views/project/index.tt24
1 files changed, 24 insertions, 0 deletions
diff --git a/views/project/index.tt b/views/project/index.tt
new file mode 100644
index 0000000..813907b
--- /dev/null
+++ b/views/project/index.tt
@@ -0,0 +1,24 @@
+<h2><: $project :></h2>
+
+<ul>
+  <li>url: <: $url :></li>
+  <li>description: <: $description :></li>
+  <li><a href="<: $base_uri :>/project/<: $project :>/feed">feed</a></li>
+</ul>
+
+<h3>Builds</h3>
+
+<ul class="commits" id="<: $project :>">
+  :for $builds -> $build {
+  <li id="<: $build.commit :>">
+    Commit <: $build.commit :> (<: $build.date.ymd :>)<br />
+    author: <: $build.author.name :> - <a href="<: $build.compare :>">compare</a><br />
+    :for $build.version.keys() -> $version {
+        <a href="#"><: $version :></a>=<: $build.version[$version] :>
+    :}
+  </li>
+  :}
+</ul>
+
+<div id="display_test_result">
+</div>