fix user feedback controller test

This commit is contained in:
albert
2011-07-17 18:40:24 -04:00
parent 72e9da01b5
commit 98403d0cb7
17 changed files with 100 additions and 154 deletions

View File

@@ -0,0 +1,17 @@
<div id="c-user-feedbacks">
<div id="a-new">
<h1>New User Feedback</h1>
<div id="preview">
</div>
<%= simple_form_for(@user_feedback) do |f| %>
<%= f.input :user_name %>
<%= f.input :category, :collection => ["positive", "neutral", "negative"] %>
<%= f.input :body %>
<%= f.button :submit %>
<%= f.button :submit, :value => "Preview" %>
<% end %>
</div>
</div>