Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
La Quadrature du Net
rpteam
Revue de Press
Commits
c4f1cf88
Verified
Commit
c4f1cf88
authored
Sep 05, 2017
by
Thibaut Broggi
Browse files
Add a search form
It can filter articles depending on their titles
parent
206bfc61
Pipeline
#1196
passed with stages
in 1 minute and 54 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
apps/rp/templates/rp/article_list_public.html
View file @
c4f1cf88
...
...
@@ -65,10 +65,12 @@
{% endif %}
<li
class=
"nav-item ml-auto"
>
<a
class=
"nav-link disabled"
href=
"#"
>
<i
class=
"fa fa-search"
></i>
Rechercher
</a>
<form
method=
"get"
action=
"{% url 'rp:public-article-list' %}"
>
<div
class=
"input-group"
>
<input
type=
"search"
placeholder=
"Rechercher"
name=
"q"
class=
"fa fa-search"
/>
<button
type=
"submit"
class=
"btn btn-default input-group-addon"
><i
class=
"fa fa-search"
></i></button>
</div>
</form>
</li>
<li
class=
"nav-item"
>
...
...
apps/rp/views/articles.py
View file @
c4f1cf88
...
...
@@ -34,6 +34,9 @@ class ArticleList(ListView):
else
:
qs
=
Article
.
objects
.
filter
()
if
self
.
request
.
GET
.
get
(
'q'
,
''
)
!=
''
:
qs
=
qs
.
filter
(
title__contains
=
self
.
request
.
GET
.
get
(
'q'
,
''
))
filter_tag
=
self
.
kwargs
.
get
(
"filter_tag"
,
self
.
filter_tag
)
if
filter_tag
is
not
None
:
qs
=
qs
.
filter
(
tags__name__in
=
[
filter_tag
])
...
...
@@ -46,6 +49,7 @@ class ArticleList(ListView):
qs
=
Tag
.
objects
.
annotate
(
num_times
=
Count
(
'taggit_taggeditem_items'
)).
all
()
qs
=
qs
.
order_by
(
'-num_times'
)
context
[
"tags"
]
=
qs
context
[
"search"
]
=
self
.
request
.
GET
.
get
(
"q"
,
''
)
return
context
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment