about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--public/css/style.css4
-rw-r--r--views/index.tt4
-rw-r--r--views/task/index.tt6
3 files changed, 9 insertions, 5 deletions
diff --git a/public/css/style.css b/public/css/style.css
index fdd5d32..00defda 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -233,10 +233,12 @@ font-family:Monaco,"Courier New","DejaVu Sans Mono","Bitstream Vera Sans Mono",m
 .repo p.desc{margin:0 0 3px 0;font-size:12px;color:#444;}
 .repo p.updated-at{margin:0;font-size:11px;color:#888;}
 
+.comming-builds{border:1px solid #d8d8d8;background-color:#f0f0f0}
+
 .commit .name{float:left; width: 100%;}
 .commit .name .date{color:#888;font-size:90%;}
 .commit .name .author{font-weight: bolder;line-height:2em}
 .commit .gravatar{border:1px solid #d0d0d0;padding:2px;background-color:white;float:left;margin-right:.7em;}
 
 .columns .first{float:left;width:450px;}
-.columns .last{float:right;width:450px;}
+.columns .last{float:right;width:300px;}
diff --git a/views/index.tt b/views/index.tt
index 6359157..f82aa5e 100644
--- a/views/index.tt
+++ b/views/index.tt
@@ -28,11 +28,13 @@
       <div class="last">
         <h3>Builds pending</h3>
 
+        <div class="comming-builds">
         <ul>
           : for $builds -> $build {
-          <li><a href="<: $uri_base :>task/<: $build :>"><: $build :></a></li>
+          <li><a href="<: $uri_base :>task/<: $build.id :>"><: $build.project :> (id: <: $build.id :>)</a></li>
           : }
         </ul>
+        </div>
       </div>
 
     </div>
diff --git a/views/task/index.tt b/views/task/index.tt
index 1c1f904..baa76bf 100644
--- a/views/task/index.tt
+++ b/views/task/index.tt
@@ -1,5 +1,5 @@
 <div id="page">
-<div id="content">
-<h2>Task </h2>
-</div>
+     <div id="content">
+     <h2>Task <: $task.id :></h2>
+     </div>
 </div>