1 {% extends "dashboard/table.html" %}
3 {% load jenkins_filters %}
20 {% for pod, booking, utilization in dev_pods %}
23 <a href={% url 'dashboard:resource' resource_id=pod.id %}>{{ pod.name }}</a>
26 <a target='_blank' href={{ pod.slave.url }}>{{ pod.slave.name }}</a>
29 {{ booking.user.username }}
40 <td style="background-color:{{ pod.slave.status | jenkins_status_color }}">
41 {{ pod.slave.status }}
44 <a href="{% url 'booking:create' resource_id=pod.id %}" class="btn btn-primary">
49 <a href="{% url 'dashboard:resource' resource_id=pod.id %}" class="btn btn-primary">
59 <script type="text/javascript">
60 $(document).ready(function () {
61 $('#table').DataTable({
64 {type: 'status', targets: 6}
70 {% endblock tablejs %}