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
1a062245
Commit
1a062245
authored
6 years ago
by
Todd Dembrey
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused method
parent
4a54b697
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
opentech/apply/funds/tables.py
+0
-19
0 additions, 19 deletions
opentech/apply/funds/tables.py
with
0 additions
and
19 deletions
opentech/apply/funds/tables.py
+
0
−
19
View file @
1a062245
...
@@ -174,25 +174,6 @@ class RoundsTable(tables.Table):
...
@@ -174,25 +174,6 @@ class RoundsTable(tables.Table):
def
_field_order
(
self
,
field
,
desc
):
def
_field_order
(
self
,
field
,
desc
):
return
getattr
(
F
(
f
'
{
field
}
'
),
'
desc
'
if
desc
else
'
asc
'
)(
nulls_last
=
True
)
return
getattr
(
F
(
f
'
{
field
}
'
),
'
desc
'
if
desc
else
'
asc
'
)(
nulls_last
=
True
)
def
_order
(
self
,
qs
,
desc
,
field
,
round
=
True
,
lab
=
True
):
annotated_name
=
field
.
split
(
'
__
'
)[
0
]
fields
=
[
f_field
for
f_field
,
show
in
[(
F
(
f
'
roundbase__
{
field
}
'
),
round
),
(
F
(
f
'
labbase__
{
field
}
'
),
lab
)]
if
show
]
if
lab
and
round
:
lookup
=
Coalesce
(
*
fields
)
else
:
lookup
=
fields
[
0
]
qs
=
qs
.
annotate
(
**
{
annotated_name
:
lookup
}
)
qs
=
qs
.
order_by
(
self
.
_field_order
(
annotated_name
,
desc
))
return
qs
,
True
def
order_start_date
(
self
,
qs
,
desc
):
def
order_start_date
(
self
,
qs
,
desc
):
return
qs
.
order_by
(
self
.
_field_order
(
'
start_date
'
,
desc
)),
True
return
qs
.
order_by
(
self
.
_field_order
(
'
start_date
'
,
desc
)),
True
...
...
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