index.html.erb 346 B

1234567891011
  1. <% content_for :subnav_items do %>
  2. <%= render 'subnav_item', link_text: 'Accounts', destination_path: accounts_path %>
  3. <% end %>
  4. <%= generate_error flash[:error] %>
  5. <%= generate_notice notice %>
  6. <%= generate_accounts_list(@accounts, Account, "Accounts",
  7. [:name, :email, :company, :is_admin],
  8. new_account_path,
  9. "Create Account") %>