Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
adc2018-system
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
adc2018
adc2018-system
Commits
646807d4
Commit
646807d4
authored
Aug 17, 2018
by
Kento HASEGAWA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix UI bugs
parent
27ef2387
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
part_question_status.html
comm/server/templates/part_question_status.html
+8
-6
No files found.
comm/server/templates/part_question_status.html
View file @
646807d4
...
@@ -44,20 +44,22 @@
...
@@ -44,20 +44,22 @@
<th>
Score
</th>
<th>
Score
</th>
</tr>
</tr>
{% for k, v in qdata.answers.items() %}
{% for k, v in qdata.answers.items() %}
{% if
qdata.best_json == k
%}
{% if
(qdata.best_json == k) and (v.answer != "")
%}
<tr
class=
"answer-detail-row submit-answer"
data-json=
"{{k}}"
data-qname=
"{{qname}}"
>
<tr
class=
"answer-detail-row submit-answer"
data-json=
"{{k}}"
data-qname=
"{{qname}}"
>
{% else %}
{% else %}
<tr
class=
"answer-detail-row"
data-json=
"{{k}}"
data-qname=
"{{qname}}"
>
<tr
class=
"answer-detail-row"
data-json=
"{{k}}"
data-qname=
"{{qname}}"
>
{% endif %}
{% endif %}
<td>
{{v.timestamp}}
</td>
<td>
{{v.timestamp}}
</td>
<td>
{{v.solver}}
</td>
<td>
{{v.solver}}
</td>
<td>
{{v.nlcheck}}
</td>
<td>
{% if v.nlcheck == -1 %}
Not solved
{% else %}
{{v.nlcheck}}
{% endif %}
</td>
</tr>
</tr>
{% endfor %}
{% endfor %}
</table>
</table>
</div>
</div>
<p>
状況:
<span
id=
"solving-question-status"
>
{{qdata.status}}
</span></p>
<h4>
結果
</h4>
<p>
クライアント:
<span
id=
"solved-client"
>
{{qdata.answer.client}}
</span></p>
<pre
id=
"solved-result"
>
{{qdata.answer.answer}}
</pre>
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