Sha256: 91ec903e653ddd945d377c253de884f6c888a76d5a901d81265d93aedc46d51e
Contents?: true
Size: 1.25 KB
Versions: 3
Compression:
Stored size: 1.25 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
3 entries across 3 versions & 1 rubygems