Sha256: 8f9b760d5df39ba75075bff67b5633517102f591202a068b46a6fae5f5b20fdb

Contents?: true

Size: 853 Bytes

Versions: 10

Compression:

Stored size: 853 Bytes

Contents

<%= simple_form_for resource_path do |form| %>
  <%= form.error_notification %>

  <div class="page-header">
    <h1><%= t('brightcontent.' + (resource.new_record? ? 'create_new' : 'edit_model'), model: resource_class.model_name.human).capitalize %></h1>
  </div>

  <div class="panel-body form-fields">
    <% form_fields.each do |form_field| %>
      <%= render_form_field(form, form_field) %>
    <% end %>
  </div>

  <div class="panel-footer">
    <%= form.button :submit, class: "btn btn-primary" %>
    <%= form.button :submit, t('brightcontent.save_and_continue'), class: "btn btn-default", name: "commit_and_continue" %>

    <% unless resource.new_record? %>
      <%= link_to t('brightcontent.delete'), resource_path, class: "btn btn-danger pull-right", method: :delete, data: { confirm: 'Are you sure?' } %>
    <% end %>
  </div>
<% end %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
brightcontent-core-2.6.0 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.5.1 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.5.0 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.4.6 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.4.5 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.4.4 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.4.3 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.4.2 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.4.1 app/views/brightcontent/base/_form.html.erb
brightcontent-core-2.4.0 app/views/brightcontent/base/_form.html.erb