SciPost Code Repository
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SciPost
Manage
Activity
Members
Labels
Plan
Issues
119
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SciPost
SciPost
Commits
e108d42d
Commit
e108d42d
authored
1 month ago
by
George Katsikas
Browse files
Options
Downloads
Patches
Plain Diff
feat(editorial):
show plagiarism assessment comments in pool tab
fixes
#364
parent
da449885
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scipost_django/edadmin/templates/edadmin/_hx_submission_edadmin_subtab.html
+33
-0
33 additions, 0 deletions
...dmin/templates/edadmin/_hx_submission_edadmin_subtab.html
with
33 additions
and
0 deletions
scipost_django/edadmin/templates/edadmin/_hx_submission_edadmin_subtab.html
+
33
−
0
View file @
e108d42d
{% load automarkup %}
{% if submission.stage_incoming_completed %}
<h3>
Info on completed stages
</h3>
...
...
@@ -69,6 +71,37 @@
</td>
</tr>
</table>
{% with assessment=submission.internal_plagiarism_assessment %}
{% if assessment.comments_for_edadmin or assessment.comments_for_authors %}
<div
class=
"row"
>
<div
class=
"col"
>
<div
class=
"fs-4"
>
Comments for edadmin
</div>
<p>
{% automarkup assessment.comments_for_edadmin %}
</p>
</div>
<div
class=
"col"
>
<div
class=
"fs-4"
>
Comments for authors
</div>
<p>
{% automarkup assessment.comments_for_authors %}
</p>
</div>
</div>
{% endif %}
{% endwith %}
{% with assessment=submission.iThenticate_plagiarism_assessment %}
{% if assessment.comments_for_edadmin or assessment.comments_for_authors %}
<div
class=
"row"
>
<div
class=
"col"
>
<div
class=
"fs-4"
>
Comments for edadmin
</div>
<p>
{% automarkup assessment.comments_for_edadmin %}
</p>
</div>
<div
class=
"col"
>
<div
class=
"fs-4"
>
Comments for authors
</div>
<p>
{% automarkup assessment.comments_for_authors %}
</p>
</div>
</div>
{% endif %}
{% endwith %}
{% elif subtab == "preassignment" %}
{% if not submission.stage_preassignment_completed %}
This stage has not been completed yet.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment