Skip to content

Instantly share code, notes, and snippets.

@px-amaac
Created December 10, 2014 10:14
Show Gist options
  • Select an option

  • Save px-amaac/f901cc5303cb7c13a5c8 to your computer and use it in GitHub Desktop.

Select an option

Save px-amaac/f901cc5303cb7c13a5c8 to your computer and use it in GitHub Desktop.
i have this
<p>
<%= form_for step.screenshots.build, url: tutorial_step_screenshots_path(tutorial_id, step.id), method: :post do |screenshot| %>
<div class="field">
<%= screenshot.label :caption %>
<%= screenshot.text_field :caption %>
</div>
<div class="field">
<%= screenshot.label :description %>
<%= screenshot.text_area :description %>
</div>
<div>
<%= screenshot.label :image %><br />
<%= screenshot.file_field :image %>
</div>
<%= screenshot.submit "ScreenShot", class: "button success" %>
<% end %>
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment