We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe3f95 commit fb5cb1bCopy full SHA for fb5cb1b
1 file changed
cms/server/templates/admin/submission.html
@@ -194,8 +194,15 @@ <h2 id="title_evaluation_admin" class="toggling_on">Evaluation (as seen by the a
194
<h2 id="title_compilation" class="toggling_on">Compilation</h2>
195
<div id="compilation">
196
197
+ <h3>Outcome</h3>
198
<pre>{% if sr.compilation_text is not None %}{{ format_status_text(sr.compilation_text) }}{% end %}</pre>
199
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
206
</div>
207
208
{% end %}
0 commit comments