Skip to content

Instantly share code, notes, and snippets.

@buk
Created April 14, 2011 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buk/920039 to your computer and use it in GitHub Desktop.
Save buk/920039 to your computer and use it in GitHub Desktop.
_form.html.erb
<%= form_for @report do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :technician_id %><br />
<%= f.text_field :technician_id %>
</p>
<p>
<%= f.label :title %><br />
<%= f.text_field :title %>
</p>
<p>
<%= f.label :problem %><br />
<%= f.text_area :problem %>
</p>
<p><%= f.submit %></p>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment