Show More
Commit Description:
testdata import now looks for *1*.in when finding raw dir...
Commit Description:
testdata import now looks for *1*.in when finding raw dir git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@437 6386c4cd-e34a-4fa8-8920-d93eb39b512e
File last commit:
Show/Diff file:
Action:
app/views/graders/submission.html.haml | 22 lines | 487 B | text/x-haml | HamlLexer |
%h1= "Submission: #{@submission.id}"
%p
User:
= "#{@submission.user.login}"
%br/
Problem:
- if @submission.problem!=nil
= "#{@submission.problem.full_name}"
- else
= "(n/a)"
%br/
= "Number: #{@submission.number}"
%br/
= "Submitted at: #{format_short_time(@submission.submitted_at)}"
%b Source code (first 10kb)
%div{:style => "border: 1px solid black; background: lightgrey"}
- if @submission.source
%pre
=h truncate(@submission.source,10240)