Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 703131
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:47:51+00:00 2026-05-14T03:47:51+00:00

Newbie question. I have Django models that look like this: class Video(models.Model): uploaded_by =

  • 0

Newbie question. I have Django models that look like this:

class Video(models.Model):
    uploaded_by = models.ForeignKey('VideoUser') 
    problem_video = models.BooleanField(default=False)
class VideoUser(models.Model):
    name = models.CharField(max_length=250 )
    def num_videos(self):
        num_videos = Video.objects.filter(uploaded_by=self, problem_video=false).count()
        return num_videos

And I want to be able to produce a leaderboard of users who’ve uploaded at least one non-problem video, ordered by the number of non-problem videos they’ve uploaded.

I can get part of the way there with annotate – I can produce an ordered list, but I don’t know how to make it conditional on the problem_video field being False.

 leaderboard = VideoUser.objects. \
            .annotate(num_submissions=Count('videosubmission')) \
            .filter(num_submissions__gt=0).order_by('-num_submissions')

Can anyone suggest how to extend this to take the problem_video field into account too? Maybe I need a bridging table…?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T03:47:52+00:00Added an answer on May 14, 2026 at 3:47 am

    If I remember correctly,

    leaderboard = VideoUser.objects. \
            .annotate(num_submissions=Count('videosubmission')) \
            .filter(num_submissions__gt=0, video__problem_video=False).order_by('-num_submissions')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is a newbie question: I have a pre-existing function that I would like
This is a real newbie question. I have simple app that selects a picture
I have a newbie question! I want to do something like this: puts Example.new([a,b,c])
Sorry if this is a newbie question. I have a VB.NET subroutine that is
I seem to have similar problem as this guy: Django newbie deployment question -
Newbie question, but I have this code: import java.util.*; import java.io.*; public class Welcome1
Newbie question. I have the following models: class Asset < ActiveRecord::Base belongs_to :assetable, :polymorphic
Newbie question. I have a NSMutableArray that holds multiple objects (objects that stores Bezier
MVC newbie question re binders. Supposing I have two strongly typed partial actions that
quick and very basic newbie question. If i have list of dictionaries looking like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.