mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 15:40:31 +08:00
17 lines
522 B
Text
17 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 %>
|