Bob Smith wrote:

> views:
> christmas.html.erb
> <table border=1 width="25%">
>   <th>Single Families</th>
>   <col>
>   <%= render :partial=>"christmas", :collection => @single %>
> </table>
> 

Perhaps something like:

<table border=1 width="25%">
  <tr>
    <th>Single Families</th>
  </tr>
  <%= render :partial => "christmas", :collection => @single %>
</table>
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to