可以说我有一张这样的桌子:
我想根据类型设置表格行的样式{id1: 'Anamnse', id2: 'Befund', id3: 'Therapie'}
。手动我会简单地添加引导类
我的问题是如何使用 ruby 自动实现这一点?这是我的代码,用于表格:
<table id="report" class="table table-striped ">
<tr>
<th>Typ</th>
<th>Beschreibung</th>
<th>Datum</th>
<th> </th>
</tr>
<% @patient.treatments.each do |treatment| %>
<tr>
<td><%= treatment.category.try(:typ) %></td>
<td><%= treatment.content %></td>
<td><%= treatment.day %></td>
<td><div class="arrow"></div></td>
</tr>
<tr>
<td colspan="5">
<%= link_to 'Löschen', [treatment.patient, treatment],
:confirm => 'Sind sie sicher?',
:method => :delete %>
<% treatment.paintings.each do |paint| %>
<%= image_tag paint.name.url(:thumb) %>
<% end %>
</td>
</tr>
<% end %>
</table>
结论:样式必须取决于
<td><%= treatment.category.try(:typ) %></td>