|
|
@ -96,20 +96,20 @@ class Widget::Table::EntryTable < Widget::Table |
|
|
|
content_tag :tfoot do |
|
|
|
content_tag :tfoot do |
|
|
|
content_tag :tr do |
|
|
|
content_tag :tr do |
|
|
|
if show_result(@subject, 0) != show_result(@subject) |
|
|
|
if show_result(@subject, 0) != show_result(@subject) |
|
|
|
concat content_tag(:th, '', colspan: FIELDS.size) |
|
|
|
concat content_tag(:td, '', colspan: FIELDS.size) |
|
|
|
concat content_tag(:th) { |
|
|
|
concat content_tag(:td) { |
|
|
|
concat content_tag(:div, |
|
|
|
concat content_tag(:div, |
|
|
|
show_result(@subject), |
|
|
|
show_result(@subject), |
|
|
|
class: 'inner generic-table--footer-outer') |
|
|
|
class: 'inner generic-table--footer-outer') |
|
|
|
} |
|
|
|
} |
|
|
|
concat content_tag(:th) { |
|
|
|
concat content_tag(:td) { |
|
|
|
concat content_tag(:div, |
|
|
|
concat content_tag(:div, |
|
|
|
show_result(@subject, 0), |
|
|
|
show_result(@subject, 0), |
|
|
|
class: 'result generic-table--footer-outer') |
|
|
|
class: 'result generic-table--footer-outer') |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
concat content_tag(:th, '', colspan: FIELDS.size + 1) |
|
|
|
concat content_tag(:td, '', colspan: FIELDS.size + 1) |
|
|
|
concat content_tag(:th) { |
|
|
|
concat content_tag(:td) { |
|
|
|
concat content_tag(:div, |
|
|
|
concat content_tag(:div, |
|
|
|
show_result(@subject), |
|
|
|
show_result(@subject), |
|
|
|
class: 'result generic-table--footer-outer') |
|
|
|
class: 'result generic-table--footer-outer') |
|
|
|