8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / views / work_units / _show_log_link.html.erb
1 <% if wu.state_label.in? ["Complete", "Failed", "Cancelled"] %>
2   <% lc = wu.log_collection %>
3   <% if lc and object_readable(lc, Collection) and object_readable(wu.uuid) %>
4     <%= link_to("Log", "#{wu.uri}#Log") %>
5   <% else %>
6     Log unavailable
7   <% end %>
8 <% elsif wu.state_label == "Running" %>
9   <% if object_readable(wu.uuid) %>
10     <%= link_to("Log", "#{wu.uri}#Log") %>
11   <% else %>
12     Log unavailable
13   <% end %>
14 <% end %>