Sha256: 3e07d59bf3c6ec0ab3fcaf398deaf8b0ac01d0376ec00cc09154158c128869f5
Contents?: true
Size: 511 Bytes
Versions: 9
Compression:
Stored size: 511 Bytes
Contents
%p = form.label :title = form.text_field :title %p = form.label :summary = form.text_area :summary %p = form.label :body = form.text_area :body %p = form.label :author = form.collection_select(:author_id, @authors, :id, :name) %p = form.label :slug = form.text_field :slug %p = form.label :tag_ids, 'Tags' = form.collection_check_boxes(:tag_ids, @tags, :id, :label) do |b| = b.label { b.check_box + b.text } %p = form.label :published = form.check_box :published %p= form.submit
Version data entries
9 entries across 9 versions & 1 rubygems