Sha256: a1e69228bfc7c3e8b901338ddfd1c524292a287879a628b6229e68af5d2d0caa
Contents?: true
Size: 1.2 KB
Versions: 4
Compression:
Stored size: 1.2 KB
Contents
<%= form_for(@type) do |f| %> <div class="small-12 columns"> <%= f.submit "Save", class: "success button" %> <%= link_to "Back", types_path, class: "secondary hollow button" %> <% unless @type.new_record? %> <%= link_to "Records (#{@type.contents.size})", contents_path(type: @type.slug), class: "hollow button warning" %> <%= link_to "Metafields (#{@type.metafields.size})", type_metafields_path(@type), class: "hollow button" %> <%= link_to "Media (#{@type.media.size})", type_media_path(@type), class: "hollow button alert" %> <% end %> </div> <% if @type.errors.any? %> <div class="small-12 columns"> <div class="callout warning"> <h5><%= pluralize(@type.errors.count, "error") %> prohibited this content from being saved:</h5> <ul> <% @type.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 @type.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