diff mbox

[Branch,~linaro-validation/lava-scheduler/trunk] Rev 59: fix display of device in job listings

Message ID 20110804093052.6266.32957.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

Michael-Doyle Hudson Aug. 4, 2011, 9:30 a.m. UTC
------------------------------------------------------------
revno: 59
committer: Michael-Doyle Hudson <michael.hudson@linaro.org>
branch nick: trunk
timestamp: Thu 2011-08-04 10:28:39 +0100
message:
  fix display of device in job listings
modified:
  lava_scheduler_app/templates/lava_scheduler_app/alljobs.html
  lava_scheduler_app/templates/lava_scheduler_app/index.html


--
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/templates/lava_scheduler_app/alljobs.html'
--- lava_scheduler_app/templates/lava_scheduler_app/alljobs.html	2011-08-01 16:15:44 +0000
+++ lava_scheduler_app/templates/lava_scheduler_app/alljobs.html	2011-08-04 09:28:39 +0000
@@ -14,7 +14,7 @@ 
     <tr>
       <th class="id">ID</th>
       <th>Status</th>
-      <th>Target</th>
+      <th>Device</th>
       <th>Submitter</th>
       <th>Submit Time</th>
     </tr>
@@ -24,7 +24,7 @@ 
     <tr>
       <td><a href="{% url lava_scheduler_app.views.job pk=job.pk %}">{{ job.id }}</a></td>
       <td>{{ job.get_status_display }}</td>
-      <td>{{ job.target }}</td>
+      <td>{{ job.actual_device }}</td>
       <td>{{ job.submitter }}</td>
       <td>{{ job.submit_time }}</td>
     </tr>

=== modified file 'lava_scheduler_app/templates/lava_scheduler_app/index.html'
--- lava_scheduler_app/templates/lava_scheduler_app/index.html	2011-08-01 16:15:44 +0000
+++ lava_scheduler_app/templates/lava_scheduler_app/index.html	2011-08-04 09:28:39 +0000
@@ -29,7 +29,7 @@ 
     <tr>
       <th class="id">ID</th>
       <th>Status</th>
-      <th>Target</th>
+      <th>Device</th>
       <th>Submitter</th>
       <th>Submit Time</th>
     </tr>
@@ -39,7 +39,7 @@ 
     <tr>
       <td><a href="{% url lava_scheduler_app.views.job pk=job.pk %}">{{ job.id }}</a></td>
       <td>{{ job.get_status_display }}</td>
-      <td>{{ job.target }}</td>
+      <td>{{ job.actual_device }}</td>
       <td>{{ job.submitter }}</td>
       <td>{{ job.submit_time }}</td>
     </tr>