Created
January 10, 2014 23:03
-
-
Save robskrob/8364382 to your computer and use it in GitHub Desktop.
form_for_private_message
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
| <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