diff options
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/layerdetails.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/layerdetails.html b/bitbake/lib/toaster/toastergui/templates/layerdetails.html index 6c803ff544..49c62c6bc0 100644 --- a/bitbake/lib/toaster/toastergui/templates/layerdetails.html +++ b/bitbake/lib/toaster/toastergui/templates/layerdetails.html | |||
@@ -396,7 +396,12 @@ | |||
396 | <tbody> | 396 | <tbody> |
397 | {% for machine in machines %} | 397 | {% for machine in machines %} |
398 | <tr> | 398 | <tr> |
399 | <td>{{machine.name}}</td> | 399 | <td> |
400 | {{machine.name}} | ||
401 | {% if machine.get_vcs_machine_file_link_url %} | ||
402 | <a href="{{machine.get_vcs_machine_file_link_url}}" target="_blank"><i class="icon-share get-info"></i></a> | ||
403 | {% endif %} | ||
404 | </td> | ||
400 | <td>{{machine.description}}</td> | 405 | <td>{{machine.description}}</td> |
401 | <td><button class="btn btn-block select-machine-btn" data-machine-name="{{machine.name}}" {% if layer_in_project == 0 %}disabled="disabled"{% endif %}}>Select machine</button></td> | 406 | <td><button class="btn btn-block select-machine-btn" data-machine-name="{{machine.name}}" {% if layer_in_project == 0 %}disabled="disabled"{% endif %}}>Select machine</button></td> |
402 | </tr> | 407 | </tr> |