Sha256: 83c32085479276cbcce523af4ee4634c09643bb0cd53b5bfa40b22f59b0c51e7

Contents?: true

Size: 881 Bytes

Versions: 2

Compression:

Stored size: 881 Bytes

Contents

<%= simple_form_for [collections, @form] do |f| %>

  <% if f.error_notification %>
    <div class="alert alert-danger fade in">
      <strong>Wait don't go!</strong> There was a problem with your submission. Please review the errors below:
      <a class="close" data-dismiss="alert" href="#">&times;</a>
    </div>
  <% end %>

  <%= render 'form_descriptive_fields', f: f %>
  <%= render 'form_permission', f: f %>
  <%= render "curation_concerns/base/form_media", f: f %>

  <div class="row">
    <div class="col-md-12 form-actions">
      <%= f.submit class: 'btn btn-primary require-contributor-agreement' %>
      <% if action_name == 'new' %>
        <%= link_to 'Cancel', main_app.root_path, class: 'btn btn-link' %>
      <% else %>
        <%= link_to 'Cancel', collections.collection_path(@form), class: 'btn btn-link' %>
      <% end %>
    </div>
  </div>

<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
curation_concerns-0.5.0 app/views/collections/_form.html.erb
curation_concerns-0.4.0 app/views/collections/_form.html.erb