Пример #1
0
def all_comments_feed(request):
    comments = Comment.objects.excluding_boilerplate().exclude(
            comment_doc__isnull=False).order_by('-created')[0:10]
    return feeds.all_comments_feed(request, comments)
Пример #2
0
def all_comments_feed(request):
    comments = Comment.objects.excluding_boilerplate().exclude(
        comment_doc__isnull=False).order_by('-created')[0:10]
    return feeds.all_comments_feed(request, comments)
Пример #3
0
def all_comments_feed(request):
    comments = Comment.objects.public().order_by('-created')[0:10]
    return feeds.all_comments_feed(request, comments)