search for: book_name

Displaying 3 results from an estimated 3 matches for "book_name".

Did you mean: hook_name
2012 Mar 09
2
ActionMailer message delivery content
...e right direction and tell me which are those that are correct and are not. Any help would be wonderful. The message I want to send is as followed: Hello <%@user.username%> The user <% current_user.username %> has registered an interest in the following product of yours: <% @book.book_name %> <% @book.genre %> The user <% current_user.usernames %> has the following games for offer: <% current_user.book.book_name %> To view <% current_user.username %> profile click <% link_to "here", current_user.show %> If you wish to contact the user by...
2006 Jul 28
7
auto_complete_for exists but not being found by Rails
Anybody encounter this. I know the method exists in the auto_complete.rb file in my rails installation, but it itsnt accessing it throught he program. Any ideas? -- Posted via http://www.ruby-forum.com/.
2006 Apr 09
6
Write/Display AR query as Grouped Results?
I''ve got a publications table that contains an author_id foreign key and a pubrole_id foreign key. What I want to do is query the DB using AR so that I can get a list of all publications that belong_to a particular author, and group the results by the pubrole.role_name (Author, Joint Author, Editor, etc.) so that the results look something like: Author book1 info book2 info etc.