ビューのリンク テキストを病院、国として表示したいと考えています。国はガイドライン属性なので、「病院」からガイドライン.国にアクセスして表示できるようにする必要があります
例: Get Well Hospital, Sickland
これを正しくコーディングする方法がわかりません。現時点でビューファイルにある
<% @list.each do |hospital| %>
<tr class="tablerow">
<td><%= link_to (hospital, country), :action => :topichospital, :hospital => hospital, :country=>country %></td>
</tr>
持っていたときはうまくいきましたが、国を追加する方法もわかりません
<% @list.each do |hospital| %>
<tr class="tablerow">
<td><%= link_to hospital, :action => :topichospital, :hospital => hospital %></td>
</tr>
Guidelines_controller.rb での私の listhospital アクションは
def listhospital
@list = Guideline.order(:hospital).uniq.pluck(:hospital)
respond_to do |format|
format.html # index.html.erb
format.json { render json: @guidelines }
end
end