Skip to content

Instantly share code, notes, and snippets.

@robskrob
Created January 10, 2014 23:03
Show Gist options
  • Select an option

  • Save robskrob/8364382 to your computer and use it in GitHub Desktop.

Select an option

Save robskrob/8364382 to your computer and use it in GitHub Desktop.
form_for_private_message
<div class='well'>
<%= form_for @private_message, url: private_messages_user_path(@user) do |f| %>
<div class="control-group">
<%= f.label :receiver_uid %>
</div>
<div class="control-group">
<%= f.label :subject %>
<%= f.text_field :subject %>
</div>
<div class="control-group">
<%= f.label :body %>
<%= f.text_area :body, rows: 5 %>
</div>
<%= f.submit 'Send Message', class: 'btn btn-primary'%>
<%end%>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment