SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 7406deae authored by Geert Kapteijns's avatar Geert Kapteijns
Browse files

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
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)
...@@ -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
......
...@@ -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>
......
...@@ -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)
......
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