SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 60bf4bd4 authored by George Katsikas's avatar George Katsikas :goat:
Browse files

group collection submissions by status

parent 6f93397f
No related branches found
No related tags found
No related merge requests found
......@@ -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>&nbsp;
<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>&nbsp;
<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>&nbsp;
<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 %}
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment