Sha256: ea455b2be7fc4c5ad2073c8f787db76ec0596ef92bcad2dd0fa944e98e96bb9f
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
<%= simple_form_for @form, html: { class: 'editor' } do |f| %> <div id="descriptions_display"> <h2 class="non lower">Descriptions <small class="pull-right"><span class="error">*</span> indicates required fields</small> </h2> <% f.object.rendered_terms.each do |term| %> <%= render_edit_field_partial term, f: f %> <% end %> </div> <%= hidden_field_tag :type, params[:type] %> <% if params[:batch_document_ids].present? %> <% params[:batch_document_ids].each do |batch_item| %> <input type="hidden" name="batch_document_ids[]" value="<%= batch_item %>"/> <% end %> <% end %> <div class="collection_form_visibility"> <%= render 'form_permission', f: f %> </div> <div class="primary-actions"> <% if params[:action] == "new" %> <%= f.submit 'Create Collection', class: 'btn btn-primary', onclick: "confirmation_needed = false;", id: "create_submit", name: "create_collection" %> <% else %> <%= f.submit 'Update Collection', class: 'btn btn-primary', onclick: "confirmation_needed = false;", id: "update_submit", name: "update_collection" %> <% end %> <%= link_to t(:'helpers.action.cancel'), main_app.root_path, class: 'btn btn-link' %> </div> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sufia-7.0.0.beta1 | app/views/collections/_form.html.erb |