Sha256: feeb773c255a144375a5a80d334daf6055fc4cd038a78adfc387d0f44074ead4
Contents?: true
Size: 612 Bytes
Versions: 19
Compression:
Stored size: 612 Bytes
Contents
%h1 User = form_for @user do |f| %p = f.label :name = f.text_field :name %p %strong Projects = f.nested_fields_for :projects, wrapper: :div do |pf| = pf.remove_nested_fields_link %p = pf.label :name = pf.text_field :name %p = pf.label :description = pf.text_field :description %p %strong Todos = pf.nested_fields_for :todos do |tf| = tf.remove_nested_fields_link %p = tf.label :description = tf.text_field :description = pf.add_nested_fields_link :todos = f.add_nested_fields_link :projects = f.submit
Version data entries
19 entries across 19 versions & 1 rubygems