Wrap table header rows in thead
This commit is contained in:
parent
b9d9785330
commit
13f0591605
5 changed files with 60 additions and 50 deletions
|
@ -1,20 +1,22 @@
|
|||
<table id="block_list" cellpadding="3">
|
||||
<tr>
|
||||
<% if show_user_name %>
|
||||
<th><%= t ".display_name" %></th>
|
||||
<% end %>
|
||||
<% if show_creator_name %>
|
||||
<th><%= t ".creator_name" %></th>
|
||||
<% end %>
|
||||
<th><%= t ".reason" %></th>
|
||||
<th><%= t ".status" %></th>
|
||||
<th><%= t ".revoker_name" %></th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<% if show_revoke_link %>
|
||||
<th></th>
|
||||
<% end %>
|
||||
</tr>
|
||||
<thead>
|
||||
<tr>
|
||||
<% if show_user_name %>
|
||||
<th><%= t ".display_name" %></th>
|
||||
<% end %>
|
||||
<% if show_creator_name %>
|
||||
<th><%= t ".creator_name" %></th>
|
||||
<% end %>
|
||||
<th><%= t ".reason" %></th>
|
||||
<th><%= t ".status" %></th>
|
||||
<th><%= t ".revoker_name" %></th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<% if show_revoke_link %>
|
||||
<th></th>
|
||||
<% end %>
|
||||
</tr>
|
||||
</thead>
|
||||
<%= render :partial => "block", :locals => { :show_revoke_link => show_revoke_link, :show_user_name => show_user_name, :show_creator_name => show_creator_name }, :collection => @user_blocks %>
|
||||
</table>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue