Skip to content

Instantly share code, notes, and snippets.

@tonyfg
Created September 14, 2018 09:48
Show Gist options
  • Save tonyfg/8a877ecc9b6645fb326445e4a361f764 to your computer and use it in GitHub Desktop.
Save tonyfg/8a877ecc9b6645fb326445e4a361f764 to your computer and use it in GitHub Desktop.
Org list HTML views
# app/views/organizations/index.html.erb
<table>
<tbody>
<% @organizations.each do |organization| %>
<tr>
<td><%= organization.name % ></td>
<td><%= organization.address %></td>
<td><%= organization.contact_name %></td>
<td><%= organization.contact_phone %></td>
<td><%= render 'hq_list', organization: organization %></td>
<td><%= link_to 'Show', organization %></td>
<td><%= link_to 'Edit', edit_organization_path(organization) %></td>
<td><%= link_to 'Destroy', organization, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
# app/views/organizations/_hq_list.html.erb
<% organization.hqs.each do |hq| %>
<%= hq.name %>: <%= hq.country.name %> (<%= hq.stores.count %> stores) <br>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment