Skip to content

Commit fb5cb1b

Browse files
Show compilation output in AWS
1 parent 3fe3f95 commit fb5cb1b

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

cms/server/templates/admin/submission.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,15 @@ <h2 id="title_evaluation_admin" class="toggling_on">Evaluation (as seen by the a
194194
<h2 id="title_compilation" class="toggling_on">Compilation</h2>
195195
<div id="compilation">
196196

197+
<h3>Outcome</h3>
197198
<pre>{% if sr.compilation_text is not None %}{{ format_status_text(sr.compilation_text) }}{% end %}</pre>
198199

200+
<h3>Standard output</h3>
201+
<pre>{% if sr.compilation_stdout is not None %}{{ sr.compilation_stdout }}{% end %}</pre>
202+
203+
<h3>Standard error</h3>
204+
<pre>{% if sr.compilation_stderr is not None %}{{ sr.compilation_stderr }}{% end %}</pre>
205+
199206
</div>
200207

201208
{% end %}

0 commit comments

Comments
 (0)