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 6944785
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:21:08+00:00 2026-05-27T13:21:08+00:00

I have a fairly simple model that uses Django Taggit for tagging. Everything works

  • 0

I have a fairly simple model that uses Django Taggit for tagging.

Everything works great, but now I’d like to expand some functionality and I’m a little confused.

What I want is two views.

One that shows all my tags in the system.
One that shows all the content from my app with a specific tag.

What makes sense to me is to do the following for each view.

in views.py for myapp

  1. All Tags

    from myapp.models import App

    from taggit.models import Tag

    class TagList(ListView):

    “”” Get all the tags in the db “””

    queryset = Tag.objects.all()
    template_name = "myapp/TagList.html"
    paginate_by = 10
    
  2. All content for a Tag

    from myapp.models import App

    from taggit.models import Tag

    class TaggedList(ListView):
    “”” Get all the contet for a tag “””

    template_name = "myapp/TaggedList.html"
    
    def get_object(self):
        return get_list_or_404(App, tag__iexact=self.kwargs['tag'])
    

Have I lost my mind or is it really that easy? BTW, I’m using generic class views.

Thanks for the help.
Dave

  • 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-27T13:21:09+00:00Added an answer on May 27, 2026 at 1:21 pm

    2.
    I believe this is for returning a single object, not multiple objects.

    def get_object(self):  
    

    Instead perhaps you should try something like the following:

    def get_queryset(self):
        return TaggedItem.objects.filter(tag__iexact=self.kwargs['tag'])
    

    This returns a list of items with GenericForeignKeys

    If you are only interested in a specific model called App then

        return App.objects.filter(tags__name__in=[self.kwargs['tag']])
    

    Default variable name in the template is TaggedItem_list then

    {% for item in TaggedItem_list %}
       {{item.content_object}} {# generic foreign key here #}
    {% endfor %}
    

    The urls.py would have to be similar to

    url(r'someapp/(?P<tag>\w+)/$', TaggedList.as_view())
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some fairly simple state needs (for now). I think I would like
I have a fairly simple const struct in some C code that simply holds
I have a fairly simple python loop that calls a few functions, and writes
I have a fairly simple math operation I'd like to perform on a array.
I have a fairly simple domain model involving a list of Facility aggregate roots.
I have a Core Data app with a fairly simple data model. I want
Alright, I have a fairly simple design. class Update(models.Model): pub_date = models.DateField() title =
I have a fairly simple model: public class Delivery { public int DeliveryId {
I have a simple model like class Interest < ActiveRecord::Base has_and_belongs_to_many :user_profiles end class
I have a fairly simple form with a checkbox, and I noticed that my

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.