Created
December 10, 2014 10:14
-
-
Save px-amaac/f901cc5303cb7c13a5c8 to your computer and use it in GitHub Desktop.
i have this
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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