2020-02-03 08:49:00 +00:00
|
|
|
<link href="/assets/admin/cancerpredict.css" media="print" rel="stylesheet">
|
|
|
|
<link href="/assets/admin/cancerpredict.css" media="screen" rel="stylesheet">
|
2020-01-13 11:35:30 +00:00
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<% if !@results[0].nil? %>
|
2020-01-28 10:29:04 +00:00
|
|
|
<th><%=((I18n.locale=="en") ? 'submit time' : '提交時間') %></th>
|
2020-01-13 11:35:30 +00:00
|
|
|
<% @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>
|
2020-01-28 10:29:04 +00:00
|
|
|
<th><%=((I18n.locale=="en") ? 'submit time' : '提交時間') %></th>
|
2020-01-13 11:35:30 +00:00
|
|
|
<% result.names.each do |key,name|%>
|
|
|
|
<th><%=name[I18n.locale.to_s].to_s.html_safe %></th>
|
|
|
|
<%end%>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% end %>
|
|
|
|
<tr>
|
2020-01-28 10:29:04 +00:00
|
|
|
<td><%= result.created_at %></td>
|
2020-01-13 11:35:30 +00:00
|
|
|
<% 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 %>
|
2022-01-26 06:11:23 +00:00
|
|
|
<td><% v = result.values[key][I18n.locale.to_s][value.to_i-1] rescue nil %><%= v.nil? ? value : v %></td>
|
2020-01-13 11:35:30 +00:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<%end%>
|
|
|
|
</tr>
|
|
|
|
<%end%>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-02-03 08:49:00 +00:00
|
|
|
<%=@pagination.html_safe%>
|
2020-01-13 11:35:30 +00:00
|
|
|
<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>
|