Sha256: 435c2f97a9f4ed67ebf446b9bf9b2ad910511160b31045bd40be839cc0eef457
Contents?: true
Size: 1.23 KB
Versions: 59
Compression:
Stored size: 1.23 KB
Contents
<div id="content_detail" class="ui-corner-all ui-widget-content"> <h1 class="title"><%= t('page.listing', model: t('activerecord.models.agent_relationship')) -%></h1> <div id="content_list"> <table class="table table-striped index"> <tr> <th><%= t('activerecord.attributes.agent_relationship.parent_id') -%>:</th> <th><%= t('activerecord.attributes.agent_relationship.child_id') -%>:</th> <th></th> <th></th> <th></th> </tr> <% @agent_relationships.each do |agent_relationship| %> <tr> <td><%= link_to agent_relationship.parent.full_name, agent_relationship.parent %></td> <td><%= link_to agent_relationship.child.full_name, agent_relationship.child %></td> <td><%= link_to t('page.show'), agent_relationship %></td> <td><%= link_to t('page.edit'), edit_agent_relationship_path(agent_relationship) %></td> <td><%= link_to t('page.destroy'), agent_relationship, data: {confirm: t('page.are_you_sure')}, method: :delete %></td> </tr> <% end %> </table> <%= paginate(@agent_relationships) %> </div> </div> <div id="submenu" class="ui-corner-all ui-widget-content"> <ul> <li><%= link_to t('page.new', model: t('activerecord.models.agent_relationship')), new_agent_relationship_path -%></li> </ul> </div>
Version data entries
59 entries across 58 versions & 2 rubygems