1 <%# Copyright (C) The Arvados Authors. All rights reserved.
3 SPDX-License-Identifier: AGPL-3.0 %>
5 <% htmloptions = {class: ''}.merge(htmloptions || {})
6 htmloptions[:class] += " btn-#{size}" rescue nil
7 link_text = 'Show' unless defined?(link_text) and link_text
9 <%= link_to_if_arvados_object object, {
10 link_text: raw('<i class="fa fa-fw ' + fa_icon_class_for_object(object) + '"></i> ' + link_text),
11 name_link: (defined?(name_link) && name_link && name_link.uuid) ? name_link : nil
17 title: 'show ' + object.class_for_display.downcase,
18 class: 'btn btn-default ' + htmloptions[:class],