summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/templates/dashboard/dev_pods.html
diff options
context:
space:
mode:
Diffstat (limited to 'pharos-dashboard/templates/dashboard/dev_pods.html')
-rw-r--r--pharos-dashboard/templates/dashboard/dev_pods.html36
1 files changed, 18 insertions, 18 deletions
diff --git a/pharos-dashboard/templates/dashboard/dev_pods.html b/pharos-dashboard/templates/dashboard/dev_pods.html
index c4cb1ba..2b4b017 100644
--- a/pharos-dashboard/templates/dashboard/dev_pods.html
+++ b/pharos-dashboard/templates/dashboard/dev_pods.html
@@ -19,37 +19,37 @@
<tbody>
{% for pod, booking, utilization in dev_pods %}
<tr>
- <th>
+ <td>
<a href={% url 'dashboard:resource' resource_id=pod.id %}>{{ pod.name }}</a>
- </th>
- <th>
+ </td>
+ <td>
<a target='_blank' href={{ pod.slave.url }}>{{ pod.slave.name }}</a>
- </th>
- <th>
+ </td>
+ <td>
{{ booking.user.username }}
- </th>
- <th>
+ </td>
+ <td>
{{ booking.end }}
- </th>
- <th>
+ </td>
+ <td>
{{ booking.purpose }}
- </th>
- <th>
+ </td>
+ <td>
{{ utilization }}
- </th>
- <th style="background-color:{{ pod.slave.status | jenkins_status_color }}">
+ </td>
+ <td style="background-color:{{ pod.slave.status | jenkins_status_color }}">
{{ pod.slave.status }}
- </th>
- <th>
+ </td>
+ <td>
<a href="{% url 'booking:create' resource_id=pod.id %}" class="btn btn-primary">
Book
</a>
- </th>
- <th>
+ </td>
+ <td>
<a href="{% url 'dashboard:resource' resource_id=pod.id %}" class="btn btn-primary">
Info
</a>
- </th>
+ </td>
</tr>
{% endfor %}
</tbody>