diff mbox

[Branch,~linaro-validation/lava-scheduler/trunk] Rev 246: Add a duration column to "all job summary" page. This is the duration from

Message ID 20130502090216.2749.34158.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Senthil Kumaran May 2, 2013, 9:02 a.m. UTC
------------------------------------------------------------
revno: 246
committer: Senthil Kumaran <senthil.kumaran@linaro.org>
branch nick: trunk
timestamp: Thu 2013-05-02 14:30:04 +0530
message:
  Add a duration column to "all job summary" page. This is the duration from
  when the job started and when it ends. It does not take into account the 
  submit time.
modified:
  lava_scheduler_app/views.py


--
lp:lava-scheduler
https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk

You are subscribed to branch lp:lava-scheduler.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_scheduler_app/views.py'
--- lava_scheduler_app/views.py	2013-02-10 21:26:06 +0000
+++ lava_scheduler_app/views.py	2013-05-02 09:00:04 +0000
@@ -134,6 +134,7 @@ 
     submitter = Column()
     submit_time = DateColumn()
     end_time = DateColumn()
+    duration = Column()
 
     datatable_opts = {
         'aaSorting': [[0, 'desc']],