SciPost Code Repository
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SciPost
Manage
Activity
Members
Labels
Plan
Issues
118
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
60bf4bd4
Commit
60bf4bd4
authored
9 months ago
by
George Katsikas
Browse files
Options
Downloads
Patches
Plain Diff
group collection submissions by status
parent
6f93397f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scipost_django/series/templates/series/collection_detail.html
+20
-25
20 additions, 25 deletions
...ost_django/series/templates/series/collection_detail.html
scipost_django/series/views.py
+14
-0
14 additions, 0 deletions
scipost_django/series/views.py
with
34 additions
and
25 deletions
scipost_django/series/templates/series/collection_detail.html
+
20
−
25
View file @
60bf4bd4
...
...
@@ -105,34 +105,29 @@
{% endif %}
{% if collection
.submissions.under_consideration|length > 0 or collection.
submissions
.accepted
|length > 0 %}
{% if collection
_
submissions|length > 0 %}
<div
class=
"row"
>
<div
class=
"col-12"
>
<h3
class=
"highlight"
>
Submissions to this Collection
</h3>
<ul>
{% for submission in collection.submissions.accepted %}
<li>
<strong
class=
"text-success"
>
accepted:
</strong>
<a
href=
"{{ submission.get_absolute_url }}"
target=
"_blank"
>
{{ submission }}
</a>
</li>
{% endfor %}
{% for submission in collection.submissions.revision_requested %}
<li>
<strong
class=
"text-primary"
>
awaiting resubmission:
</strong>
<a
href=
"{{ submission.get_absolute_url }}"
target=
"_blank"
>
{{ submission }}
</a>
</li>
{% endfor %}
{% for submission in collection.submissions.in_refereeing %}
<li>
<strong
class=
"text-warning"
>
under refereeing:
</strong>
<a
href=
"{{ submission.get_absolute_url }}"
target=
"_blank"
>
{{ submission }}
</a>
</li>
{% endfor %}
</ul>
{% regroup collection_submissions|dictsort:'status' by status as submissions_by_status %}
{% for submission_group in submissions_by_status %}
<section
class=
"px-2"
aria-labelledby=
"submission-{{ submission_group.grouper }}-header"
>
<h4
id=
"submission-{{ submission_group.grouper }}-header"
>
{{ submission_group.list.0.get_status_display }}
</h4>
<ul>
{% for submission in submission_group.list %}
<li>
<a
href=
"{{ submission.get_absolute_url }}"
target=
"_blank"
>
{{ submission }}
</a>
</li>
{% endfor %}
</ul>
</section>
{% endfor %}
</div>
</div>
{% endif %}
...
...
This diff is collapsed.
Click to expand it.
scipost_django/series/views.py
+
14
−
0
View file @
60bf4bd4
...
...
@@ -15,6 +15,7 @@ from profiles.models import Profile
from
profiles.forms
import
ProfileSelectForm
,
ProfileDynSelForm
from
colleges.forms
import
FellowshipDynSelForm
from
colleges.models
import
Fellowship
from
submissions.models.submission
import
Submission
from
.models
import
Series
,
Collection
,
CollectionPublicationsTable
...
...
@@ -54,6 +55,19 @@ class CollectionDetailView(DetailView):
def
get_context_data
(
self
,
*
args
,
**
kwargs
):
context
=
super
().
get_context_data
(
*
args
,
**
kwargs
)
context
[
"
expected_author_form
"
]
=
ProfileSelectForm
()
context
[
"
collection_submissions
"
]
=
self
.
object
.
submissions
.
filter
(
status__in
=
[
Submission
.
REFEREEING_IN_PREPARATION
,
Submission
.
IN_REFEREEING
,
Submission
.
REFEREEING_CLOSED
,
Submission
.
AWAITING_RESUBMISSION
,
Submission
.
VOTING_IN_PREPARATION
,
Submission
.
IN_VOTING
,
Submission
.
ACCEPTED_IN_TARGET
,
Submission
.
ACCEPTED_IN_ALTERNATIVE_AWAITING_PUBOFFER_ACCEPTANCE
,
Submission
.
ACCEPTED_IN_ALTERNATIVE
,
]
)
return
context
...
...
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