fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add contrib locale to make-locale-pack, various bugfixes
[wolnelektury.git]
/
apps
/
search
/
views.py
diff --git
a/apps/search/views.py
b/apps/search/views.py
index
de2337f
..
527ca82
100644
(file)
--- a/
apps/search/views.py
+++ b/
apps/search/views.py
@@
-74,11
+74,14
@@
def hint(request):
tags = s.hint_tags(prefix, pdcounter=True)
books = s.hint_books(prefix)
tags = s.hint_tags(prefix, pdcounter=True)
books = s.hint_books(prefix)
- # TODO DODAC TU HINTY
+ def category_name(c):
+ if c.startswith('pd_'):
+ c=c[len('pd_'):]
+ return _(c)
return JSONResponse(
[{'label': t.name,
return JSONResponse(
[{'label': t.name,
- 'category':
_
(t.category),
+ 'category':
category_name
(t.category),
'id': t.id,
'url': t.get_absolute_url()}
for t in tags] + \
'id': t.id,
'url': t.get_absolute_url()}
for t in tags] + \