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
7406deae
Commit
7406deae
authored
8 years ago
by
Geert Kapteijns
Browse files
Options
Downloads
Patches
Plain Diff
Change theses search form method to GET. Extract query logic to custom manager.
parent
05e255c6
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
theses/managers.py
+17
-0
17 additions, 0 deletions
theses/managers.py
theses/models.py
+4
-0
4 additions, 0 deletions
theses/models.py
theses/templates/theses/theses.html
+6
-7
6 additions, 7 deletions
theses/templates/theses/theses.html
theses/views.py
+8
-20
8 additions, 20 deletions
theses/views.py
with
35 additions
and
27 deletions
theses/managers.py
0 → 100644
+
17
−
0
View file @
7406deae
from
django.db
import
models
class
ThesisLinkManager
(
models
.
Manager
):
def
search_results
(
self
,
form
):
return
self
.
vetted
().
filter
(
title__icontains
=
form
.
cleaned_data
[
'
title_keyword
'
],
author__icontains
=
form
.
cleaned_data
[
'
author
'
],
abstract__icontains
=
form
.
cleaned_data
[
'
abstract_keyword
'
],
supervisor__icontains
=
form
.
cleaned_data
[
'
supervisor
'
],
).
order_by
(
'
-defense_date
'
)
def
latest
(
self
,
n
):
return
self
.
vetted
().
order_by
(
'
latest_activity
'
)[:
n
]
def
vetted
(
self
):
return
self
.
filter
(
vetted
=
True
)
This diff is collapsed.
Click to expand it.
theses/models.py
+
4
−
0
View file @
7406deae
...
@@ -7,6 +7,8 @@ from scipost.constants import SCIPOST_DISCIPLINES, SCIPOST_SUBJECT_AREAS,\
...
@@ -7,6 +7,8 @@ from scipost.constants import SCIPOST_DISCIPLINES, SCIPOST_SUBJECT_AREAS,\
subject_areas_dict
,
disciplines_dict
subject_areas_dict
,
disciplines_dict
from
scipost.models
import
Contributor
from
scipost.models
import
Contributor
from
.managers
import
ThesisLinkManager
class
ThesisLink
(
models
.
Model
):
class
ThesisLink
(
models
.
Model
):
MASTER_THESIS
=
'
MA
'
MASTER_THESIS
=
'
MA
'
...
@@ -64,6 +66,8 @@ class ThesisLink(models.Model):
...
@@ -64,6 +66,8 @@ class ThesisLink(models.Model):
abstract
=
models
.
TextField
(
verbose_name
=
'
abstract, outline or summary
'
)
abstract
=
models
.
TextField
(
verbose_name
=
'
abstract, outline or summary
'
)
latest_activity
=
models
.
DateTimeField
(
default
=
timezone
.
now
)
latest_activity
=
models
.
DateTimeField
(
default
=
timezone
.
now
)
objects
=
ThesisLinkManager
()
def
__str__
(
self
):
def
__str__
(
self
):
return
self
.
title
return
self
.
title
...
...
This diff is collapsed.
Click to expand it.
theses/templates/theses/theses.html
+
6
−
7
View file @
7406deae
...
@@ -20,8 +20,7 @@
...
@@ -20,8 +20,7 @@
<div
class=
"col-md-4"
>
<div
class=
"col-md-4"
>
<div
class=
"panel page-header-panel"
>
<div
class=
"panel page-header-panel"
>
<h2>
Search SciPost Theses:
</h2>
<h2>
Search SciPost Theses:
</h2>
<form
class=
"small"
action=
"{% url 'theses:theses' %}"
method=
"post"
>
<form
class=
"small"
action=
"{% url 'theses:theses' %}"
method=
"get"
>
{% csrf_token %}
<table>
<table>
{{ form|bootstrap:'4,8,sm' }}
{{ form|bootstrap:'4,8,sm' }}
</table>
</table>
...
@@ -39,14 +38,14 @@
...
@@ -39,14 +38,14 @@
</div>
</div>
</div>
</div>
{% if
thesislink_search_list
or form.has_changed %}
{% if
search_results
or form.has_changed %}
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-12"
>
<div
class=
"col-12"
>
<hr
class=
"hr12"
>
<hr
class=
"hr12"
>
<h3>
Search results:
</h3>
<h3>
Search results:
</h3>
{% if
thesislink_search_list
%}
{% if
search_results
%}
<ul>
<ul>
{% for thesislink in
thesislink_search_list
%}
{% for thesislink in
search_results
%}
{% include 'theses/_thesislink_header_as_li.html' with thesislink=thesislink %}
{% include 'theses/_thesislink_header_as_li.html' with thesislink=thesislink %}
{% endfor %}
{% endfor %}
</ul>
</ul>
...
@@ -57,13 +56,13 @@
...
@@ -57,13 +56,13 @@
</div>
</div>
{% endif %}
{% endif %}
{% if
thesislink_
recent_
list
%}
{% if recent_
theses
%}
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-12"
>
<div
class=
"col-12"
>
<hr
class=
"hr12"
>
<hr
class=
"hr12"
>
<h2>
Recently active Thesis Links:
</h2>
<h2>
Recently active Thesis Links:
</h2>
<ul>
<ul>
{% for thesislink in
thesislink_
recent_
list
%}
{% for thesislink in recent_
theses
%}
{% include 'theses/_thesislink_header_as_li.html' with thesislink=thesislink %}
{% include 'theses/_thesislink_header_as_li.html' with thesislink=thesislink %}
{% endfor %}
{% endfor %}
</ul>
</ul>
...
...
This diff is collapsed.
Click to expand it.
theses/views.py
+
8
−
20
View file @
7406deae
...
@@ -87,29 +87,17 @@ class VetThesisLink(UpdateView):
...
@@ -87,29 +87,17 @@ class VetThesisLink(UpdateView):
def
theses
(
request
):
def
theses
(
request
):
if
request
.
method
==
'
POST
'
:
form
=
ThesisLinkSearchForm
(
request
.
GET
)
form
=
ThesisLinkSearchForm
(
request
.
POST
)
if
form
.
is_valid
()
and
form
.
has_changed
():
if
form
.
is_valid
()
and
form
.
has_changed
():
search_results
=
ThesisLink
.
objects
.
search_results
(
form
)
thesislink_search_list
=
ThesisLink
.
objects
.
filter
(
recent_theses
=
[]
title__icontains
=
form
.
cleaned_data
[
'
title_keyword
'
],
author__icontains
=
form
.
cleaned_data
[
'
author
'
],
abstract__icontains
=
form
.
cleaned_data
[
'
abstract_keyword
'
],
supervisor__icontains
=
form
.
cleaned_data
[
'
supervisor
'
],
vetted
=
True
,
)
thesislink_search_list
.
order_by
(
'
-pub_date
'
)
else
:
thesislink_search_list
=
[]
else
:
else
:
form
=
ThesisLinkSearchForm
(
)
recent_theses
=
ThesisLink
.
objects
.
latest
(
5
)
thesislink_search_list
=
[]
search_results
=
[]
thesislink_recent_list
=
(
ThesisLink
.
objects
.
filter
(
vetted
=
True
,
latest_activity__gte
=
timezone
.
now
()
+
datetime
.
timedelta
(
days
=-
7
)))
context
=
{
context
=
{
'
form
'
:
form
,
'
thesislink_search_list
'
:
thesislink_search_list
,
'
form
'
:
form
,
'
search_results
'
:
search_results
,
'
thesislink_recent_list
'
:
thesislink_
recent_
list
'
recent_theses
'
:
recent_
theses
}
}
return
render
(
request
,
'
theses/theses.html
'
,
context
)
return
render
(
request
,
'
theses/theses.html
'
,
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