summaryrefslogtreecommitdiffstats
path: root/askbot/views/users.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-04-20 04:20:35 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-04-20 04:20:35 -0400
commita7ff97ac49fc63119cad12d432fa1e4964d1d859 (patch)
treeec9a1831defa7c83a9309a36d2ec6d763e33d674 /askbot/views/users.py
parent1d12eab728e0ccb07dd26713415eb01e810fe0e0 (diff)
downloadaskbot-a7ff97ac49fc63119cad12d432fa1e4964d1d859.tar.gz
askbot-a7ff97ac49fc63119cad12d432fa1e4964d1d859.tar.bz2
askbot-a7ff97ac49fc63119cad12d432fa1e4964d1d859.zip
part way through implemented post reject reasons in the moderation view
Diffstat (limited to 'askbot/views/users.py')
-rw-r--r--askbot/views/users.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/askbot/views/users.py b/askbot/views/users.py
index 61273e95..2131c206 100644
--- a/askbot/views/users.py
+++ b/askbot/views/users.py
@@ -682,6 +682,7 @@ def user_responses(request, user, context):
'inbox_section':section,
'tab_description' : _('comments and answers to others questions'),
'page_title' : _('profile - responses'),
+ 'post_reject_reasons': models.Post.objects.filter(post_type = 'reject_reason'),
'responses' : filtered_response_list,
}
context.update(data)