Sha256: 73467a8e5777bccaedc19315934e57294576ceb672002bab2fb185c2cc8212ae

Contents?: true

Size: 627 Bytes

Versions: 1

Compression:

Stored size: 627 Bytes

Contents

<% @meta_businesses.each do |meta_business, meta_actions| %>
<div class="media">
  <figure class="media-left">
    <%= image_tag meta_business.logo, class: 'image is-64x64' if meta_business.logo.present? %>
  </figure>
  <div class="media-content">
    <div class="content">
      <strong><%= meta_business.name %></strong>
    </div>
    <% meta_actions.each do |meta_action| %>
    <div>
      <%= link_to meta_action.name, { controller: meta_action.controller_path, action: meta_action.action_name, **params.except(:business, :namespace, :controller, :action).permit! } %>
    </div>
    <% end %>
  </div>
</div>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails_org-0.0.1 app/views/me/home/index.html.erb