remove filtering news by locale

This commit is contained in:
Kuroshini 2019-12-18 14:52:39 +03:00
parent ffa8409032
commit 2a0d153be5

View File

@ -31,9 +31,9 @@ class NewsMixinView:
else:
qs = qs.by_country_code(country_code)
locale = kwargs.get('locale')
if locale:
qs = qs.by_locale(locale)
# locale = kwargs.get('locale')
# if locale:
# qs = qs.by_locale(locale)
return qs