diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/projectbuilds.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/projectbuilds.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/projectbuilds.html b/bitbake/lib/toaster/toastergui/templates/projectbuilds.html index 27cfcd7dce..fc659a02bb 100644 --- a/bitbake/lib/toaster/toastergui/templates/projectbuilds.html +++ b/bitbake/lib/toaster/toastergui/templates/projectbuilds.html | |||
@@ -66,7 +66,17 @@ | |||
66 | {% endif %} | 66 | {% endif %} |
67 | </td> | 67 | </td> |
68 | 68 | ||
69 | <td class="target">{% for t in build.target_set.all %} <a href="{% url "builddashboard" build.id %}"> {{t.target}} </a> <br />{% endfor %}</td> | 69 | <td class="target"> |
70 | {% for t in build.target_set.all %} | ||
71 | <a href="{% url "builddashboard" build.id %}"> | ||
72 | {% if t.task %} | ||
73 | {{t.target}}:{{t.task}} | ||
74 | {% else %} | ||
75 | {{t.target}} | ||
76 | {% endif %} | ||
77 | </a> <br /> | ||
78 | {% endfor %} | ||
79 | </td> | ||
70 | <td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td> | 80 | <td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td> |
71 | <td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/y H:i"}}</a></td> | 81 | <td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/y H:i"}}</a></td> |
72 | <td class="completed_on"><a href="{% url "builddashboard" build.id %}">{{build.completed_on|date:"d/m/y H:i"}}</a></td> | 82 | <td class="completed_on"><a href="{% url "builddashboard" build.id %}">{{build.completed_on|date:"d/m/y H:i"}}</a></td> |