Sha256: 14e5d38d82b984c0aa81807533e82536b26c9557bddecbcdf57e7c3a35dbea43

Contents?: true

Size: 1.66 KB

Versions: 11

Compression:

Stored size: 1.66 KB

Contents

                  <% unless params[:mode] == 'add' %>
                    <% if manifestation.is_reservable_by?(current_user) %>
                      <%- reserve = manifestation.is_reserved_by?(current_user) -%>
                      <%- if reserve -%>
                        <%= link_to t('reserve.show'), reserve -%>
                      <%- else -%>
                        <%= link_to t('activerecord.models.reserve'), new_reserve_path(manifestation_id: manifestation.id) if can? :create, Reserve -%>
                      <%- end -%>
                    <% end %>
                    <br />
                  <% end %>
                <%- if can? :update, manifestation -%>
                  <% unless params[:mode] == 'add' %>
                    <%= link_to image_tag('icons/book_edit.png', size: '16x16', alt: t('page.edit')), edit_manifestation_path(manifestation) -%>
                  <% else %>
                    <% case %>
                    <% when @parent %>
                      <%= link_to t('page.add'), new_manifestation_manifestation_relationship_path(@parent, child_id: manifestation.id) unless @parent.derived_manifestations.include?(manifestation) or @parent == manifestation -%>
                    <% when @item %>
                      <%= link_to t('page.change'), edit_item_path(@item, manifestation_id: manifestation.id) unless @item.manifestation == manifestation -%>
                    <% else %>
                      <%= link_to image_tag('icons/arrow_divide.png', size: '16x16', alt: t('manifestation.add_derivation')), new_manifestation_path(parent_id: manifestation.id) -%>
                    <% end %>
                  <%- end -%>
                <% end %>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
enju_flower-0.1.2 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.1 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0.pre24 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0.pre23 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0.pre22 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0.pre21 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0.pre20 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0.pre19 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0.pre18 app/views/manifestations/_show_reservation.html.erb
enju_flower-0.1.0.pre17 app/views/manifestations/_show_reservation.html.erb