Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
adc2019-system
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
adc2019
adc2019-system
Commits
dd0b7f7a
Commit
dd0b7f7a
authored
Aug 28, 2019
by
Kento HASEGAWA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add request_id in the solution status list
parent
18d1659c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
.gitignore
.gitignore
+2
-0
part_problem_status_list.html
templates/part_problem_status_list.html
+1
-1
No files found.
.gitignore
View file @
dd0b7f7a
...
@@ -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
...
...
templates/part_problem_status_list.html
View file @
dd0b7f7a
...
@@ -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() %}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment