Sha256: c29d406b43478eeff7ec1163c78971b361f41a2b5f8d461827cdaa3ee98e1681

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 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 @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 %>
  </div>

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
guts-1.0.8 app/views/guts/categories/_form.html.erb
guts-1.0.7 app/views/guts/categories/_form.html.erb
guts-1.0.5 app/views/guts/categories/_form.html.erb
guts-1.0.3 app/views/guts/categories/_form.html.erb