Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hypha
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
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
ots
hypha
Commits
832042f7
Commit
832042f7
authored
2 years ago
by
Fredrik Jonsson
Browse files
Options
Downloads
Patches
Plain Diff
Filter reviewer dashboard tables by ReviewerSettings.
parent
b03b3a6f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hypha/apply/dashboard/views.py
+15
-2
15 additions, 2 deletions
hypha/apply/dashboard/views.py
with
15 additions
and
2 deletions
hypha/apply/dashboard/views.py
+
15
−
2
View file @
832042f7
...
...
@@ -4,7 +4,11 @@ from django.urls import reverse, reverse_lazy
from
django.views.generic
import
TemplateView
from
django_tables2.views
import
MultiTableMixin
from
hypha.apply.funds.models
import
ApplicationSubmission
,
RoundsAndLabs
from
hypha.apply.funds.models
import
(
ApplicationSubmission
,
ReviewerSettings
,
RoundsAndLabs
,
)
from
hypha.apply.funds.tables
import
(
ReviewerSubmissionsTable
,
SubmissionFilterAndSearch
,
...
...
@@ -188,7 +192,16 @@ class ReviewerDashboardView(MyFlaggedMixin, MySubmissionContextMixin, TemplateVi
def
get_context_data
(
self
,
**
kwargs
):
context
=
super
().
get_context_data
(
**
kwargs
)
submissions
=
ApplicationSubmission
.
objects
.
all
().
for_table
(
self
.
request
.
user
)
'''
If use_settings variable is set for ReviewerSettings use settings
parameters to filter submissions or return all as it
was by default.
'''
reviewer_settings
=
ReviewerSettings
.
for_request
(
self
.
request
)
if
reviewer_settings
.
use_settings
:
submissions
=
ApplicationSubmission
.
objects
.
for_reviewer_settings
(
self
.
request
.
user
,
reviewer_settings
).
for_table
(
self
.
request
.
user
)
else
:
submissions
=
ApplicationSubmission
.
objects
.
all
().
for_table
(
self
.
request
.
user
)
context
.
update
({
'
awaiting_reviews
'
:
self
.
awaiting_reviews
(
submissions
),
...
...
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