81 lines
1.5 KiB
Plaintext
81 lines
1.5 KiB
Plaintext
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<% if !@results[0].nil? %>
|
||
|
<% @results[0].names.each do |key,name|%>
|
||
|
<th><%=name[I18n.locale.to_s].to_s.html_safe %></th>
|
||
|
<%end%>
|
||
|
<%end%>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<% @key_len = @results[0].names.length %>
|
||
|
<% @results.each do |result| %>
|
||
|
<% if result.names.length != @key_len %>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<% result.names.each do |key,name|%>
|
||
|
<th><%=name[I18n.locale.to_s].to_s.html_safe %></th>
|
||
|
<%end%>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<% end %>
|
||
|
<tr>
|
||
|
<% result.result.each do |key,value| %>
|
||
|
<% @key_len %>
|
||
|
<% if key != "locale" %>
|
||
|
<% if result.values[key][I18n.locale.to_s].length == 0 %>
|
||
|
<td><%= value.to_s %></td>
|
||
|
<% else %>
|
||
|
<td><%= result.values[key][I18n.locale.to_s][value.to_i-1] rescue value %></td>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
<%end%>
|
||
|
</tr>
|
||
|
<%end%>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<style type="text/css">
|
||
|
thead > tr > th{
|
||
|
border:1px solid;
|
||
|
background: bisque;
|
||
|
}
|
||
|
tbody{
|
||
|
background:white;
|
||
|
}
|
||
|
tbody > tr > td{
|
||
|
border:1px solid;
|
||
|
position: relative;
|
||
|
}
|
||
|
.show_li,.show_li *{
|
||
|
list-style:none;
|
||
|
color:balck;
|
||
|
}
|
||
|
.show_li ul{
|
||
|
display:none;
|
||
|
}
|
||
|
#clicktosee{
|
||
|
color:blue;
|
||
|
cursor:pointer;
|
||
|
}
|
||
|
.checkbox{
|
||
|
left: 50%;
|
||
|
position: absolute;
|
||
|
transform: translate(-50%, -50%) !important;
|
||
|
top: 50%;
|
||
|
}
|
||
|
#updatebtn{
|
||
|
margin-top: 1em;
|
||
|
position: fixed;
|
||
|
right: 1em;
|
||
|
background-color: rgb(210, 105, 0);
|
||
|
color: white;
|
||
|
border: 0em;
|
||
|
padding: 0.125em 0.5em;
|
||
|
border-radius: 0.5em;
|
||
|
}
|
||
|
</style>
|