Django's ListView - How to customise it2019 Community Moderator Electiondjango count of foreign key modelHow to merge two dictionaries in a single expression?How do I check if a list is empty?How do I check whether a file exists without exceptions?How can I safely create a nested directory in Python?How do I sort a dictionary by value?How do I list all files of a directory?Show information of subclass in list_display djangoHow to expose some specific fields of model_b based on a field of model_a?How to define Mode with generic ForeignKey in DjangoHow to create an incremental id for a set of projects per user in Django?

Fewest number of steps to reach 200 using special calculator

Could Sinn Fein swing any Brexit vote in Parliament?

Help prove this basic trig identity please!

HP P840 HDD RAID 5 many strange drive failures

What is the significance behind "40 days" that often appears in the Bible?

Loading the leaflet Map in Lightning Web Component

Can other pieces capture a threatening piece and prevent a checkmate?

Is there a hypothetical scenario that would make Earth uninhabitable for humans, but not for (the majority of) other animals?

What exactly term 'companion plants' means?

Help rendering a complicated sum/product formula

Maths symbols and unicode-math input inside siunitx commands

Recruiter wants very extensive technical details about all of my previous work

What (if any) is the reason to buy in small local stores?

Is it possible to stack the damage done by the Absorb Elements spell?

What does "^L" mean in C?

Calculate the frequency of characters in a string

Optimising a list searching algorithm

Synchronized implementation of a bank account in Java

How to define limit operations in general topological spaces? Are nets able to do this?

What does Jesus mean regarding "Raca," and "you fool?" - is he contrasting them?

Why is indicated airspeed rather than ground speed used during the takeoff roll?

How is the partial sum of a geometric sequence calculated?

Light propagating through a sound wave

Pronounciation of the combination "st" in spanish accents



Django's ListView - How to customise it



2019 Community Moderator Electiondjango count of foreign key modelHow to merge two dictionaries in a single expression?How do I check if a list is empty?How do I check whether a file exists without exceptions?How can I safely create a nested directory in Python?How do I sort a dictionary by value?How do I list all files of a directory?Show information of subclass in list_display djangoHow to expose some specific fields of model_b based on a field of model_a?How to define Mode with generic ForeignKey in DjangoHow to create an incremental id for a set of projects per user in Django?










0















I am sorry if this is a duplicate, but I did not find any answer to my question.



My issue below



I am really struggling to understand how to customise my views when using ListView. I read the Django documentation, but I find it very brief.



What I would like to do is to count the questions for each topic and return the topic with the most questions. I would be able to count the number of questions for each topic with the following line of code in my models.py (Topic class):



def questions_count(self):
return Question.objects.filter(question__topic = self).count()


However, I would like to return only the most popular Topic and the number of questions.



Using a function-based view, I would loop over the topics, and I would create two variables storing the topic name and the number of questions. However, with the ListView I do not know whether to use get_context_data(), get_queryset() or something else.



My view class:



class TopicsView(ListView):
model = Topic
context_object_name = 'topics'
template_name = 'home.html'


My models:



class Topic(models.Model):
name = models.CharField(max_length=30, unique=True)
description = models.CharField(max_length=100)

class Question(models.Model):
....
topic = models.ForeignKey(Topic, related_name='questions', on_delete=models.CASCADE)
....









share|improve this question


























    0















    I am sorry if this is a duplicate, but I did not find any answer to my question.



    My issue below



    I am really struggling to understand how to customise my views when using ListView. I read the Django documentation, but I find it very brief.



    What I would like to do is to count the questions for each topic and return the topic with the most questions. I would be able to count the number of questions for each topic with the following line of code in my models.py (Topic class):



    def questions_count(self):
    return Question.objects.filter(question__topic = self).count()


    However, I would like to return only the most popular Topic and the number of questions.



    Using a function-based view, I would loop over the topics, and I would create two variables storing the topic name and the number of questions. However, with the ListView I do not know whether to use get_context_data(), get_queryset() or something else.



    My view class:



    class TopicsView(ListView):
    model = Topic
    context_object_name = 'topics'
    template_name = 'home.html'


    My models:



    class Topic(models.Model):
    name = models.CharField(max_length=30, unique=True)
    description = models.CharField(max_length=100)

    class Question(models.Model):
    ....
    topic = models.ForeignKey(Topic, related_name='questions', on_delete=models.CASCADE)
    ....









    share|improve this question
























      0












      0








      0








      I am sorry if this is a duplicate, but I did not find any answer to my question.



      My issue below



      I am really struggling to understand how to customise my views when using ListView. I read the Django documentation, but I find it very brief.



      What I would like to do is to count the questions for each topic and return the topic with the most questions. I would be able to count the number of questions for each topic with the following line of code in my models.py (Topic class):



      def questions_count(self):
      return Question.objects.filter(question__topic = self).count()


      However, I would like to return only the most popular Topic and the number of questions.



      Using a function-based view, I would loop over the topics, and I would create two variables storing the topic name and the number of questions. However, with the ListView I do not know whether to use get_context_data(), get_queryset() or something else.



      My view class:



      class TopicsView(ListView):
      model = Topic
      context_object_name = 'topics'
      template_name = 'home.html'


      My models:



      class Topic(models.Model):
      name = models.CharField(max_length=30, unique=True)
      description = models.CharField(max_length=100)

      class Question(models.Model):
      ....
      topic = models.ForeignKey(Topic, related_name='questions', on_delete=models.CASCADE)
      ....









      share|improve this question














      I am sorry if this is a duplicate, but I did not find any answer to my question.



      My issue below



      I am really struggling to understand how to customise my views when using ListView. I read the Django documentation, but I find it very brief.



      What I would like to do is to count the questions for each topic and return the topic with the most questions. I would be able to count the number of questions for each topic with the following line of code in my models.py (Topic class):



      def questions_count(self):
      return Question.objects.filter(question__topic = self).count()


      However, I would like to return only the most popular Topic and the number of questions.



      Using a function-based view, I would loop over the topics, and I would create two variables storing the topic name and the number of questions. However, with the ListView I do not know whether to use get_context_data(), get_queryset() or something else.



      My view class:



      class TopicsView(ListView):
      model = Topic
      context_object_name = 'topics'
      template_name = 'home.html'


      My models:



      class Topic(models.Model):
      name = models.CharField(max_length=30, unique=True)
      description = models.CharField(max_length=100)

      class Question(models.Model):
      ....
      topic = models.ForeignKey(Topic, related_name='questions', on_delete=models.CASCADE)
      ....






      python django django-models django-views django-generic-views






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 6 at 22:08









      cpitcpit

      237




      237






















          2 Answers
          2






          active

          oldest

          votes


















          1














          You might want to try using .annotate() to get the count of Questions associated with each Topic:





          from django.db.models import Count

          topics_count = Topics.objects.annotate(count_of_questions=Count('question'))


          Each Topic object will have a new attribute count_of_questions which is the total number of questions associated with each Topic.



          In your ListView:



          class TopicsView(ListView):
          model = Topic
          context_object_name = 'topics'
          template_name = 'home.html'

          def get_queryset(self):
          queryset = super(TopicsView, self).get_queryset()
          queryset = queryset.annotate(count_of_questions=Count('question'))


          Then you should be able to use dictsortreversed to do the following in your template, which should return the topic with the most questions first:



          % for t in topics
          t.count_of_questions
          % endfor %


          There's a similar question and answer in the following SO Q&A






          share|improve this answer























          • Thank you for your question. However, I am looking to return only the Topic instance with the most questions. I do not want to return a queryset.

            – cpit
            Mar 7 at 11:03












          • I'm a little confused by your comment -- if you want to use Django's ListView this is the most efficient method. In your solution you are adding to get_context_data() and I am adding to get_queryset() -- no real difference there. To only show the Topic with the most questions, just limit the results in your template to the first record? It might help if you explain what you trying to accomplish with getting the count of questions in a variable (like an if/else statement or something)?

            – tatlar
            Mar 11 at 16:33



















          0














          In the end, I have managed to do it through the get_context_data() function. This is how my solution looks like:



          def get_context_data(self, **kwargs):
          context = super().get_context_data(**kwargs)

          mostQuestions = context['object_list'][0].questions_count()
          mostQuestionsTopic = context['object_list'][0]

          for topic in context['object_list']:
          if topic.questions_count() > mostQuestions:
          mostQuestions = topic.questions_count()
          mostQuestionsTopic = topic

          context['mostQuestions'] = mostQuestions
          context['mostQuestionsTopic'] = mostQuestionsTopic

          return context


          Is there a more efficient solution?






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55032954%2fdjangos-listview-how-to-customise-it%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            You might want to try using .annotate() to get the count of Questions associated with each Topic:





            from django.db.models import Count

            topics_count = Topics.objects.annotate(count_of_questions=Count('question'))


            Each Topic object will have a new attribute count_of_questions which is the total number of questions associated with each Topic.



            In your ListView:



            class TopicsView(ListView):
            model = Topic
            context_object_name = 'topics'
            template_name = 'home.html'

            def get_queryset(self):
            queryset = super(TopicsView, self).get_queryset()
            queryset = queryset.annotate(count_of_questions=Count('question'))


            Then you should be able to use dictsortreversed to do the following in your template, which should return the topic with the most questions first:



            % for t in topics
            t.count_of_questions
            % endfor %


            There's a similar question and answer in the following SO Q&A






            share|improve this answer























            • Thank you for your question. However, I am looking to return only the Topic instance with the most questions. I do not want to return a queryset.

              – cpit
              Mar 7 at 11:03












            • I'm a little confused by your comment -- if you want to use Django's ListView this is the most efficient method. In your solution you are adding to get_context_data() and I am adding to get_queryset() -- no real difference there. To only show the Topic with the most questions, just limit the results in your template to the first record? It might help if you explain what you trying to accomplish with getting the count of questions in a variable (like an if/else statement or something)?

              – tatlar
              Mar 11 at 16:33
















            1














            You might want to try using .annotate() to get the count of Questions associated with each Topic:





            from django.db.models import Count

            topics_count = Topics.objects.annotate(count_of_questions=Count('question'))


            Each Topic object will have a new attribute count_of_questions which is the total number of questions associated with each Topic.



            In your ListView:



            class TopicsView(ListView):
            model = Topic
            context_object_name = 'topics'
            template_name = 'home.html'

            def get_queryset(self):
            queryset = super(TopicsView, self).get_queryset()
            queryset = queryset.annotate(count_of_questions=Count('question'))


            Then you should be able to use dictsortreversed to do the following in your template, which should return the topic with the most questions first:



            % for t in topics
            t.count_of_questions
            % endfor %


            There's a similar question and answer in the following SO Q&A






            share|improve this answer























            • Thank you for your question. However, I am looking to return only the Topic instance with the most questions. I do not want to return a queryset.

              – cpit
              Mar 7 at 11:03












            • I'm a little confused by your comment -- if you want to use Django's ListView this is the most efficient method. In your solution you are adding to get_context_data() and I am adding to get_queryset() -- no real difference there. To only show the Topic with the most questions, just limit the results in your template to the first record? It might help if you explain what you trying to accomplish with getting the count of questions in a variable (like an if/else statement or something)?

              – tatlar
              Mar 11 at 16:33














            1












            1








            1







            You might want to try using .annotate() to get the count of Questions associated with each Topic:





            from django.db.models import Count

            topics_count = Topics.objects.annotate(count_of_questions=Count('question'))


            Each Topic object will have a new attribute count_of_questions which is the total number of questions associated with each Topic.



            In your ListView:



            class TopicsView(ListView):
            model = Topic
            context_object_name = 'topics'
            template_name = 'home.html'

            def get_queryset(self):
            queryset = super(TopicsView, self).get_queryset()
            queryset = queryset.annotate(count_of_questions=Count('question'))


            Then you should be able to use dictsortreversed to do the following in your template, which should return the topic with the most questions first:



            % for t in topics
            t.count_of_questions
            % endfor %


            There's a similar question and answer in the following SO Q&A






            share|improve this answer













            You might want to try using .annotate() to get the count of Questions associated with each Topic:





            from django.db.models import Count

            topics_count = Topics.objects.annotate(count_of_questions=Count('question'))


            Each Topic object will have a new attribute count_of_questions which is the total number of questions associated with each Topic.



            In your ListView:



            class TopicsView(ListView):
            model = Topic
            context_object_name = 'topics'
            template_name = 'home.html'

            def get_queryset(self):
            queryset = super(TopicsView, self).get_queryset()
            queryset = queryset.annotate(count_of_questions=Count('question'))


            Then you should be able to use dictsortreversed to do the following in your template, which should return the topic with the most questions first:



            % for t in topics
            t.count_of_questions
            % endfor %


            There's a similar question and answer in the following SO Q&A







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 6 at 22:57









            tatlartatlar

            1,69822029




            1,69822029












            • Thank you for your question. However, I am looking to return only the Topic instance with the most questions. I do not want to return a queryset.

              – cpit
              Mar 7 at 11:03












            • I'm a little confused by your comment -- if you want to use Django's ListView this is the most efficient method. In your solution you are adding to get_context_data() and I am adding to get_queryset() -- no real difference there. To only show the Topic with the most questions, just limit the results in your template to the first record? It might help if you explain what you trying to accomplish with getting the count of questions in a variable (like an if/else statement or something)?

              – tatlar
              Mar 11 at 16:33


















            • Thank you for your question. However, I am looking to return only the Topic instance with the most questions. I do not want to return a queryset.

              – cpit
              Mar 7 at 11:03












            • I'm a little confused by your comment -- if you want to use Django's ListView this is the most efficient method. In your solution you are adding to get_context_data() and I am adding to get_queryset() -- no real difference there. To only show the Topic with the most questions, just limit the results in your template to the first record? It might help if you explain what you trying to accomplish with getting the count of questions in a variable (like an if/else statement or something)?

              – tatlar
              Mar 11 at 16:33

















            Thank you for your question. However, I am looking to return only the Topic instance with the most questions. I do not want to return a queryset.

            – cpit
            Mar 7 at 11:03






            Thank you for your question. However, I am looking to return only the Topic instance with the most questions. I do not want to return a queryset.

            – cpit
            Mar 7 at 11:03














            I'm a little confused by your comment -- if you want to use Django's ListView this is the most efficient method. In your solution you are adding to get_context_data() and I am adding to get_queryset() -- no real difference there. To only show the Topic with the most questions, just limit the results in your template to the first record? It might help if you explain what you trying to accomplish with getting the count of questions in a variable (like an if/else statement or something)?

            – tatlar
            Mar 11 at 16:33






            I'm a little confused by your comment -- if you want to use Django's ListView this is the most efficient method. In your solution you are adding to get_context_data() and I am adding to get_queryset() -- no real difference there. To only show the Topic with the most questions, just limit the results in your template to the first record? It might help if you explain what you trying to accomplish with getting the count of questions in a variable (like an if/else statement or something)?

            – tatlar
            Mar 11 at 16:33














            0














            In the end, I have managed to do it through the get_context_data() function. This is how my solution looks like:



            def get_context_data(self, **kwargs):
            context = super().get_context_data(**kwargs)

            mostQuestions = context['object_list'][0].questions_count()
            mostQuestionsTopic = context['object_list'][0]

            for topic in context['object_list']:
            if topic.questions_count() > mostQuestions:
            mostQuestions = topic.questions_count()
            mostQuestionsTopic = topic

            context['mostQuestions'] = mostQuestions
            context['mostQuestionsTopic'] = mostQuestionsTopic

            return context


            Is there a more efficient solution?






            share|improve this answer



























              0














              In the end, I have managed to do it through the get_context_data() function. This is how my solution looks like:



              def get_context_data(self, **kwargs):
              context = super().get_context_data(**kwargs)

              mostQuestions = context['object_list'][0].questions_count()
              mostQuestionsTopic = context['object_list'][0]

              for topic in context['object_list']:
              if topic.questions_count() > mostQuestions:
              mostQuestions = topic.questions_count()
              mostQuestionsTopic = topic

              context['mostQuestions'] = mostQuestions
              context['mostQuestionsTopic'] = mostQuestionsTopic

              return context


              Is there a more efficient solution?






              share|improve this answer

























                0












                0








                0







                In the end, I have managed to do it through the get_context_data() function. This is how my solution looks like:



                def get_context_data(self, **kwargs):
                context = super().get_context_data(**kwargs)

                mostQuestions = context['object_list'][0].questions_count()
                mostQuestionsTopic = context['object_list'][0]

                for topic in context['object_list']:
                if topic.questions_count() > mostQuestions:
                mostQuestions = topic.questions_count()
                mostQuestionsTopic = topic

                context['mostQuestions'] = mostQuestions
                context['mostQuestionsTopic'] = mostQuestionsTopic

                return context


                Is there a more efficient solution?






                share|improve this answer













                In the end, I have managed to do it through the get_context_data() function. This is how my solution looks like:



                def get_context_data(self, **kwargs):
                context = super().get_context_data(**kwargs)

                mostQuestions = context['object_list'][0].questions_count()
                mostQuestionsTopic = context['object_list'][0]

                for topic in context['object_list']:
                if topic.questions_count() > mostQuestions:
                mostQuestions = topic.questions_count()
                mostQuestionsTopic = topic

                context['mostQuestions'] = mostQuestions
                context['mostQuestionsTopic'] = mostQuestionsTopic

                return context


                Is there a more efficient solution?







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 7 at 14:03









                cpitcpit

                237




                237



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55032954%2fdjangos-listview-how-to-customise-it%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

                    Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

                    Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved