1499c0bced
K-Fêt - Wagtail - Page content becomes a StreamField. - GroupTeam snippet becomes a block for stream field. - Navigation menu moved becomes a "flatmenu", preventing possible future conflicts. - Page layout can be modified in wagtail admin. K-Fêt - Add shorthands for ukf account balance/article price. - Cleaning stylesheets and templates.
20 lines
511 B
Python
20 lines
511 B
Python
from kfet.models import Article
|
|
|
|
|
|
def get_articles(request=None):
|
|
articles = (
|
|
Article.objects
|
|
.filter(is_sold=True, hidden=False)
|
|
.select_related('category')
|
|
.order_by('category__name', 'name')
|
|
)
|
|
pressions, others = [], []
|
|
for article in articles:
|
|
if article.category.name == 'Pression':
|
|
pressions.append(article)
|
|
else:
|
|
others.append(article)
|
|
return {
|
|
'pressions': pressions,
|
|
'articles': others,
|
|
}
|