diff --git a/app/views/test/result.html.haml b/app/views/test/result.html.haml new file mode 100644 --- /dev/null +++ b/app/views/test/result.html.haml @@ -0,0 +1,27 @@ += user_title_bar(@user) + +%div{:style => "text-align: center"} + = "Problem: #{@test_request.problem.full_name}" + %br/ + = "Submission: #{@test_request.submission.number}" + %br/ + = "Test submitted at: #{format_short_time(@test_request.submitted_at)}" + %br/ + = simple_format((@test_request.running_stat or '')) + +- if @test_request.compiler_message!=nil and @test_request.compiler_message!='' + %b Compiler Message + %div{:style => "border: 1px solid black; background: lightgrey"} + = simple_format((@test_request.compiler_message or '')) + +%b Input +%div{:style => "border: 1px solid black; background: lightgrey"} + - if @test_request.input_file_name!=nil + = simple_format(read_textfile(@test_request.input_file_name,2048)) + +%b Output +%div{:style => "border: 1px solid black; background: lightgrey"} + - if @test_request.output_file_name!=nil + = simple_format(read_textfile(@test_request.output_file_name,2048)) + - else + (no output)