module DocLog module RawLogHelper def status_label status return 'Success'.html_safe if status 'Failed'.html_safe end def javascript_label status return ''.html_safe if status ''.html_safe end def aysnc_label status ''.html_safe if status end def test_label status ''.html_safe if status end def document_type_label document_type document_type.upcase end end end