MiraitSystems/enju_trunk

View on GitHub
app/views/agent_relationships/show.html.erb

Summary

Maintainability
Test Coverage
<div id="content_detail" class="ui-corner-all">
<h1 class="title"><%= t('page.showing', :model => t('activerecord.models.agent_relationship')) -%></h1>
<div id="content_list">
<p id="notice"><%= notice %></p>

<p>
  <strong><%= t('activerecord.attributes.agent_relationship.parent') -%>:</strong>
  <%= link_to @agent_relationship.parent.full_name, @agent_relationship.parent %>
</p>

<p>
  <strong><%= t('activerecord.attributes.agent_relationship.child') -%>:</strong>
  <%= link_to @agent_relationship.child.full_name, @agent_relationship.child %>
</p>

</div>
</div>

<div id="submenu" class="ui-corner-all">
  <ul>
    <li><%= link_to t('page.edit'), edit_agent_relationship_path(@agent_relationship) %></li>
    <li><%= link_to t('page.back'), agent_relationships_path %></li>
  </ul>
</div>