Sha256: f7e3ecc818d04533ea30c0711214ca99ed8405f4f39655926dcbcb6425308f33

Contents?: true

Size: 640 Bytes

Versions: 8

Compression:

Stored size: 640 Bytes

Contents

<%
  # submit links and/or buttons
  # Requires
  #   content_for(:submit_<left|right>)
  #   left|right (links names)

  # left|right must be used inside a form.
  # The clean content_for variant may be used unbounded.

  left ||= nil
  right ||= nil
%>
<div class="rows_submit" style="width:100%">
  <input style="display:none" type="submit" name="commit" value="OK" />
  <p style="float:left">
    <%= render '/rows/submit_part', :content => :submit_left, :names => left %>
  </p>
  <p style="float:right">
    <%= render '/rows/submit_part', :content => :submit_right, :names => right %>
  </p>
  <div style="clear:both"> </div>
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rows_controller-0.4.4 app/views/rows/_submit.html.erb
rows_controller-0.4.3 app/views/rows/_submit.html.erb
rows_controller-0.4.2 app/views/rows/_submit.html.erb
rows_controller-0.4.1 app/views/rows/_submit.html.erb
rows_controller-0.3.2 app/views/rows/_submit.html.erb
rows_controller-0.2.4 app/views/rows/_submit.html.erb
rows_controller-0.2.3 app/views/rows/_submit.html.erb
rows_controller-0.1.0 app/views/rows/_submit.html.erb