mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-04 14:44:26 +08:00
16 lines
522 B
Text
16 lines
522 B
Text
<%= link_to view_asset_url(id: asset),
|
|
class: 'btn btn-default btn-sm',
|
|
target: '_blank',
|
|
style: 'display: inline-block' do %>
|
|
<%= file_application_icon(asset) %>
|
|
<%= wopi_button_text(asset, 'view') %>
|
|
<% end %>
|
|
<% if can_edit %>
|
|
<%= link_to edit_asset_url(id: asset),
|
|
class: 'btn btn-default btn-sm',
|
|
target: '_blank',
|
|
style: 'display: inline-block' do %>
|
|
<%= file_application_icon(asset) %>
|
|
<%= wopi_button_text(asset, 'edit') %>
|
|
<% end %>
|
|
<% end %>
|