Sha256: ea44f50836c3f34f16eb11c1cda9ab5d74e7bd93dbdc48a94fbcdc4d2d5c52b7

Contents?: true

Size: 1.72 KB

Versions: 16

Compression:

Stored size: 1.72 KB

Contents

<div id="content_detail" class="ui-corner-all ui-widget-content">
<h1 class="title"><%= t('page.editing', model: t('activerecord.models.checkout')) -%></h1>
<div id="content_list">

  <%= render 'manifestations/title', manifestation: @checkout.item.manifestation if @checkout.item -%>

<h3><%= t('checkout.renewal') -%></h3>
<%- if @checkout.renewable? -%>
  <%= form_for(@checkout) do |f| -%>
    <%= t('checkout.new_due_date') -%>: <%= l(@new_due_date, format: :only_date) if @new_due_date -%>
    <%= f.hidden_field :due_date, value: @new_due_date -%>
    <br />
    <%= f.submit %>
  <%- end -%>
<%- else -%>
  <div class="field"><%= t('checkout.this_item_cant_be_renewed') -%></div>
<%- end -%>

<% if current_user.has_role?('Librarian') %>
  <h3><%= t('checkout.editing_due_date') -%></h3>

  <%= form_for(@checkout) do |f| -%>
    <%= f.error_messages -%>

    <div class="field">
      <%= f.label :due_date -%>
      <%= f.hidden_field :user_id -%>
      <%= f.hidden_field :item_id -%>
      <%= f.text_field :due_date, value: @checkout.due_date.try(:strftime, "%Y-%m-%d"), class: 'date_field', placeholder: "#{t('page.example')}: 2011-04-12"-%>
    </div>
    <div class="field">
      <%= t('checkout.renewal_count') -%>: <%= f.text_field :checkout_renewal_count, class: 'resource_integer' -%>
    </div>

    <div class="actions">
      <%= f.submit %>
    </div>
  <%- end -%>
<%- end -%>
</div>
</div>

<div id="submenu" class="ui-corner-all ui-widget-content">
  <%= render 'manifestations/book_jacket', manifestation: @checkout.item.manifestation if @checkout.item -%>
  <ul>
    <li><%= link_to t('page.show'), @checkout -%></li>
    <% if @checkout.user %>
      <li><%= link_to t('page.back'), :back -%></li>
    <% end %>
  </ul>
</div>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
enju_circulation-0.3.3 app/views/checkouts/edit.html.erb
enju_circulation-0.3.2 app/views/checkouts/edit.html.erb
enju_circulation-0.3.1 app/views/checkouts/edit.html.erb
enju_circulation-0.3.0 app/views/checkouts/edit.html.erb
enju_circulation-0.3.0.rc.1 app/views/checkouts/edit.html.erb
enju_circulation-0.3.0.beta.1 app/views/checkouts/edit.html.erb
enju_circulation-0.2.5 app/views/checkouts/edit.html.erb
enju_circulation-0.2.4 app/views/checkouts/edit.html.erb
enju_circulation-0.2.3 app/views/checkouts/edit.html.erb
enju_circulation-0.2.2 app/views/checkouts/edit.html.erb
enju_circulation-0.2.1 app/views/checkouts/edit.html.erb
enju_circulation-0.2.0 app/views/checkouts/edit.html.erb
enju_circulation-0.2.0.beta.4 app/views/checkouts/edit.html.erb
enju_circulation-0.2.0.beta.3 app/views/checkouts/edit.html.erb
enju_circulation-0.2.0.beta.2 app/views/checkouts/edit.html.erb
enju_circulation-0.2.0.beta.1 app/views/checkouts/edit.html.erb