summaryrefslogtreecommitdiffstats
path: root/forum/user.py
blob: 7afe1c36ef39d5fe10356fcc5a6073fe16758dad (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# coding=utf-8
class UserView:
    def __init__(self, id, tab_title, tab_description, page_title, view_name, template_file, data_size=0):
        self.id = id
        self.tab_title = tab_title
        self.tab_description = tab_description
        self.page_title = page_title
        self.view_name = view_name
        self.template_file = template_file
        self.data_size = data_size
        
        
USER_TEMPLATE_VIEWS = (
    UserView(
        id = 'stats',
        tab_title = u'概览',
        tab_description = u'用户概览',
        page_title = u'概览-用户资料',
        view_name = 'user_stats',
        template_file = 'user_stats.html'
    ),
    UserView(
        id = 'recent',
        tab_title = u'最近活动',
        tab_description = u'用户最近的活动状况',
        page_title = u'最近活动 - 用户资料',
        view_name = 'user_recent',
        template_file = 'user_recent.html',
        data_size = 50
    ),
    UserView(
        id = 'responses',
        tab_title = u'回应',
        tab_description = u'其他用户的回复和评论',
        page_title = u'回应 - 用户资料',
        view_name = 'user_responses',
        template_file = 'user_responses.html',
        data_size = 50
    ),
    UserView(
        id = 'reputation',
        tab_title = u'积分',
        tab_description = u'用户社区积分',
        page_title = u'积分 - 用户资料',
        view_name = 'user_reputation',
        template_file = 'user_reputation.html'
    ),
    UserView(
        id = 'favorites',
        tab_title = u'收藏',
        tab_description = u'用户收藏的问题',
        page_title = u'收藏 - 用户资料',
        view_name = 'user_favorites',
        template_file = 'user_favorites.html',
        data_size = 50
    ),
    UserView(
        id = 'votes',
        tab_title = u'投票',
        tab_description = u'用户所有投票',
        page_title = u'投票 - 用户资料',
        view_name = 'user_votes',
        template_file = 'user_votes.html',
        data_size = 50
    ),
    UserView(
        id = 'preferences',
        tab_title = u'设置',
        tab_description = u'用户参数设置',
        page_title = u'设置 - 用户资料',
        view_name = 'user_preferences',
        template_file = 'user_preferences.html'
    )
)