MiraitSystems/enju_trunk

View on GitHub
app/views/opac/reserves/edit.html.erb

Summary

Maintainability
Test Coverage
<div id="opac_content_header">
  <div id="opac_content">
    <div class="opac_title">
      <h1><%= t('page.editing', :model => t('activerecord.models.reserve')) %></h1>
    </div>
    <div class="opac_head_button_area">
      <div class="opac_head_button">
        <%= link_to t('page.showing', :model => t('activerecord.models.reserve')), reserve_path(@reserve, :opac => true) %>
      </div>
      <div class="opac_head_button">
        <%= link_to t('page.listing', :model => t('activerecord.models.reserve')), user_reserves_path(@reserve.user, :opac => true) %>
      </div>
      <div class="opac_head_button">
        <%= link_to t('opac.finish'), opac_path %>
      </div>
    </div>
  </div>
</div>

<div id="opac_content">
  <%= render 'opac/reserves/form', :reserve => @reserve, :manifestation => @reserve.manifestation, :user => @reserve.user, :informations => @informations, :libraries => @libraries %>
</div>