codn/adminpanel

View on GitHub
app/views/adminpanel/icons/_edit.html.erb

Summary

Maintainability
Test Coverage
<% if @model.has_route?(:edit) && can?(:update, @model) %>
  <%=
    link_to(
      content_tag(
        :i,
        nil,
        class: 'fa fa-pencil'
      ),
      [:edit, resource],
      title: I18n.t('action.update', resource: resource.name),
      data: {
        toggle: :tooltip,
        placement: :left,
        title: I18n.t('action.update', resource: resource.name)
      },
      class: 'tip spinner-link'
    )
  %>
<% end %>