From 65436c5a3b2f12ccec0dec3117bd6cf1915f866a Mon Sep 17 00:00:00 2001 From: Menci Date: Thu, 6 Jul 2017 09:31:55 +0800 Subject: [PATCH] Show input / output filename on testcase in submission --- views/submission_content.ejs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/submission_content.ejs b/views/submission_content.ejs index 52e090c..aad2c2d 100644 --- a/views/submission_content.ejs +++ b/views/submission_content.ejs @@ -149,9 +149,9 @@ else problemUrl = syzoj.utils.makeUrl(['problem', judge.problem_id]);
<% if (!testcase.pending && judge.allowedSeeData && testcase.status !== 'Skipped') { %>

- 输入文件 + 输入文件<% if (testcase.input_file_name) { %>(<%= testcase.input_file_name %>)<% } %>

<%= testcase.input %>
- 输出文件 + 输出文件<% if (testcase.output_file_name) { %>(<%= testcase.output_file_name %>)<% } %>
<%= testcase.answer %>
选手输出
<%= testcase.user_out %>