forked from jhao104/django-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_processors.py
41 lines (31 loc) · 922 Bytes
/
context_processors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: context_processors.py
Description :
Author : JHao
date: 2017/4/14
-------------------------------------------------
Change Activity:
2017/4/14:
-------------------------------------------------
"""
__author__ = 'JHao'
from blog.models import Category, Article, Tag, Comment
def sidebar(request):
category_list = Category.objects.all()
# 所有类型
article_rank = Article.objects.all().order_by('-view')[0:6]
# 文章排行
tag_list = Tag.objects.all()
# 标签
comment = Comment.objects.all().order_by('-create_time')[0:6]
# 评论
return {
'category_list': category_list,
'article_rank': article_rank,
'tag_list': tag_list,
'comment_list': comment
}
if __name__ == '__main__':
pass