Sha256: 62b830d06d1f1cf2d731221ae68772d2c054769aa9605353256ce18018082d7b

Contents?: true

Size: 1.31 KB

Versions: 3

Compression:

Stored size: 1.31 KB

Contents

<%= form_for(@category) do |f| %>
  <div class="small-12 columns">
    <%= f.submit 'Save', class: 'success button' %>
    <%= link_to 'Back', categories_path, class: 'secondary hollow button' %>
    <% unless @category.new_record? %>
      <%= link_to "Metafields (#{@category.metafields.size})", category_metafields_path(@category), class: 'hollow button' %>
      <%= link_to "Media (#{@category.media.size})", category_media_path(@category), class: 'hollow button warning' %>
    <% end %>
  </div>

  <% if notice %>
    <div class="small-12 columns">
      <div class="callout success notice">
        <p><%= notice %></p>
      </div>
    </div>
  <% end %>

  <% if @category.errors.any? %>
    <div class="small-12 columns">
      <div class="callout warning">
        <h5><%= pluralize(@category.errors.count, 'error') %> prohibited this content from being saved:</h5>

        <ul>
          <% @category.errors.full_messages.each do |message| %>
            <li><%= message %></li>
          <% end %>
        </ul>
      </div>
    </div>
  <% end %>

  <div class="small-12 columns">
    <%= f.label :title %>
    <%= f.text_field :title, required: true %>
  </div>

  <% unless @category.new_record? %>
    <div class="small-12 columns">
      <%= f.label :slug %>
      <%= f.text_field :slug %>
    </div>
  <% end %>
<% end %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
guts-1.3.5 app/views/guts/categories/_form.html.erb
guts-1.3.4 app/views/guts/categories/_form.html.erb
guts-1.3.3 app/views/guts/categories/_form.html.erb