Commit dd0b7f7a authored by Kento HASEGAWA's avatar Kento HASEGAWA

Add request_id in the solution status list

parent 18d1659c
...@@ -4,8 +4,10 @@ ...@@ -4,8 +4,10 @@
/conf*.json /conf*.json
/test.py /test.py
/problems/* /problems/*
/problems-gen/*
!/problems/.gitkeep !/problems/.gitkeep
/solutions/* /solutions/*
/solutions-gen/*
!/solutions/.gitkeep !/solutions/.gitkeep
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
{% set tr_class = tr_class + ' submit-solution' if k == problem.best_solution else '' %} {% 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 '' %} {% set tr_class = tr_class + ' valid-solution' if v.is_valid_solution() else '' %}
<tr class="solution-detail-row {{tr_class}}" data-solution-id="{{k}}" data-problem="{{problem.name}}"> <tr class="solution-detail-row {{tr_class}}" data-solution-id="{{k}}" data-problem="{{problem.name}}">
<td>{{v.timestamp_str}}</td> <td>{{v.timestamp_str}} ({{v.request_id}})</td>
<td>{{v.worker}}</td> <td>{{v.worker}}</td>
<td> <td>
{% if v.is_valid_solution() %} {% if v.is_valid_solution() %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment