當前位置: 首頁>>代碼示例>>Python>>正文


Python Post.author_post_count方法代碼示例

本文整理匯總了Python中forums.models.Post.author_post_count方法的典型用法代碼示例。如果您正苦於以下問題:Python Post.author_post_count方法的具體用法?Python Post.author_post_count怎麽用?Python Post.author_post_count使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在forums.models.Post的用法示例。


在下文中一共展示了Post.author_post_count方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: post_preview_async

# 需要導入模塊: from forums.models import Post [as 別名]
# 或者: from forums.models.Post import author_post_count [as 別名]
def post_preview_async(request):
    """Ajax preview of posts."""
    statsd.incr('forums.preview')
    post = Post(author=request.user, content=request.POST.get('content', ''))
    post.author_post_count = 1
    return jingo.render(request, 'forums/includes/post_preview.html',
                        {'post_preview': post})
開發者ID:Curlified,項目名稱:kitsune,代碼行數:9,代碼來源:views.py

示例2: post_preview_async

# 需要導入模塊: from forums.models import Post [as 別名]
# 或者: from forums.models.Post import author_post_count [as 別名]
def post_preview_async(request):
    """Ajax preview of posts."""
    statsd.incr('forums.preview')
    post = Post(author=request.user, content=request.POST.get('content', ''))
    post.author_post_count = 1
    if show_new_sumo(request):
        template = 'forums/includes/post_preview-new.html'
    else:
        template = 'forums/includes/post_preview.html'

    return jingo.render(request, template, {'post_preview': post})
開發者ID:Apokalyptica79,項目名稱:kitsune,代碼行數:13,代碼來源:views.py

示例3: new_thread

# 需要導入模塊: from forums.models import Post [as 別名]
# 或者: from forums.models.Post import author_post_count [as 別名]
def new_thread(request, forum_slug):
    """Start a new thread."""
    forum = get_object_or_404(Forum, slug=forum_slug)
    user = request.user
    if not forum.allows_posting_by(user):
        if forum.allows_viewing_by(user):
            raise PermissionDenied
        else:
            raise Http404

    if request.method == 'GET':
        form = NewThreadForm()
        return jingo.render(request, 'forums/new_thread.html',
                            {'form': form, 'forum': forum})

    form = NewThreadForm(request.POST)
    post_preview = None
    if form.is_valid():
        if 'preview' in request.POST:
            thread = Thread(creator=request.user,
                            title=form.cleaned_data['title'])
            post_preview = Post(thread=thread, author=request.user,
                                content=form.cleaned_data['content'])
            post_preview.author_post_count = \
                post_preview.author.post_set.count()
        else:
            thread = forum.thread_set.create(creator=request.user,
                                             title=form.cleaned_data['title'])
            thread.save()
            statsd.incr('forums.thread')
            post = thread.new_post(author=request.user,
                                   content=form.cleaned_data['content'])
            post.save()

            NewThreadEvent(post).fire(exclude=post.author)

            # Add notification automatically if needed.
            if Setting.get_for_user(request.user, 'forums_watch_new_thread'):
                NewPostEvent.notify(request.user, thread)

            url = reverse('forums.posts', args=[forum_slug, thread.id])
            return HttpResponseRedirect(urlparams(url, last=post.id))

    return jingo.render(request, 'forums/new_thread.html',
                        {'form': form, 'forum': forum,
                         'post_preview': post_preview})
開發者ID:Apokalyptica79,項目名稱:kitsune,代碼行數:48,代碼來源:views.py


注:本文中的forums.models.Post.author_post_count方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。