Advertisement
theminijohn

Untitled

Aug 16th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.31 KB | None | 0 0
  1. <%= simple_form_for(@message) do |f| %>
  2.   <%= f.error_notification %>
  3.  
  4.   <div class="inputs">
  5.     <%= f.input :receiver_id %>
  6.     <%= f.input :subject %>
  7.     <%= f.input :message_text, as: :text %>
  8.   </div>
  9.  
  10.   <div class="actions">
  11.     <%= f.button :submit, class: "btn btn-primary btn-small" %>
  12.   </div>
  13.  
  14. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement