我有一个使用支持的 htlm 和 css 元素生成并转换为看起来像引导样式的表。
我在我的代码(Rails 3.2.3)中包含了除非命令,用于在数据存在时显示表行,但在没有数据时以我希望的单行(跨越所有列)显示消息。
目前它显示但不是单行。
我尝试在表格中使用 span 和 colspan 但无法让它看起来“干净”
这是空桌子
这是带有数据的表格
这是用于生成表格的代码。
<div class="page-header">
<div class="span10">
<h1>Listing people</h1>
<div class="contextual">
<%= link_to(new_person_path, class: "btn btn-success") do %>
New Person <i class="icon-plus icon-white"></i>
<% end %>
</div>
</div>
<table class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th></th>
<th colspan="1">Full Name</th>
<th colspan="1">DOB</th>
<th colspan="1">Sex</th>
<th colspan="1">Address</th>
<th>Actions</th>
</tr>
</thead>
<tbody
<tr>
<% unless @people.empty? %>
<% @people.each do |person| %>
<td><%= person.id %></td>
<td><%= link_to person.full_name, person %></td>
<td><%= person.dob %></td>
<td><%= person.gender_to_s %></td>
<td>
<% person.addresses.each do |f| %>
<%= f.full_address %>
<% end %>
</td>
<td><%#= link_to 'Edit', edit_person_path(person) %>
<%= link_to(edit_person_path(person), class: "btn btn-small") do %>
Edit <i class="icon-edit icon-white"></i>
<% end %>
<!-- This currently works but smells -->
<%= link_to(person, class: "btn btn-small btn-danger", confirm: t_deletion_confirm(person, person.full_name), method: :delete, :title => t('EHM-G.destroy')) do %>
Destroy <i class="icon-trash icon-white"></i>
<% end %>
</td>
<% end %>
<tr>
<% else %>
<td>Move along nothing to see here<td>
<% end %>
</tr>
</tbody>
</table>
<br />
<%#= link_to 'New Person', new_person_path %>
<%= link_to(new_person_path, class: "btn btn-success") do %>
New Person <i class="icon-plus icon-white"></i>
<% end %>
</div>
那么我如何获得消息“沿着这里看不到任何东西”(感谢 Github)以“跨越”行的整个宽度并使现有标题看起来很漂亮?
谢谢
PS 这些按钮是灰色的,因为脚手架.css.scss 似乎覆盖了 bootstrap-sass。删除脚手架文件后,它将恢复为正常服务。