From dd0b7f7a38faab762a39e86e4942d61d15f8ba34 Mon Sep 17 00:00:00 2001 From: Kento HASEGAWA Date: Wed, 28 Aug 2019 16:41:32 +0900 Subject: [PATCH] Add request_id in the solution status list --- .gitignore | 2 ++ templates/part_problem_status_list.html | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 84bdf45..68fba6d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,8 +4,10 @@ /conf*.json /test.py /problems/* +/problems-gen/* !/problems/.gitkeep /solutions/* +/solutions-gen/* !/solutions/.gitkeep diff --git a/templates/part_problem_status_list.html b/templates/part_problem_status_list.html index dbaaeb6..ff7b75c 100644 --- a/templates/part_problem_status_list.html +++ b/templates/part_problem_status_list.html @@ -31,7 +31,7 @@ {% set tr_class = tr_class + ' submit-solution' if k == problem.best_solution else '' %} {% set tr_class = tr_class + ' valid-solution' if v.is_valid_solution() else '' %} - {{v.timestamp_str}} + {{v.timestamp_str}} ({{v.request_id}}) {{v.worker}} {% if v.is_valid_solution() %} -- 2.22.0