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

  • Home
  • SEARCH
  • 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 531247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:16:52+00:00 2026-05-13T09:16:52+00:00

I am reading the source code of the Django application blog at git://github.com/nathanborror/django-basic-apps.git .

  • 0

I am reading the source code of the Django application blog at git://github.com/nathanborror/django-basic-apps.git.

How do you read the following Django code?

{% tags_for_object object as tag_list %} 

My attempt: Make the variable object of the type tags_for_object and rename the variable to tag_list.

The object apparently is based on the file blog/templates/inlines/default.html:

{% if object %}
  {{ object }}
{% else %}
  {% for object in object_list %}
    {{ object }}
  {% endfor %}
{% endif %}

What is the befefit of putting the logic to two-step procedure: run single object, else loop through a list of objects?

  • 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-13T09:16:53+00:00Added an answer on May 13, 2026 at 9:16 am

    It looks like tags_for_object is the template tag from the django-tagging application.

    From the django-tagging documentation:

    tags_for_object:

    Retrieves a list of Tag objects
    associated with an object and stores
    them in a context variable.

    Usage:

    {% tags_for_object [object] as [varname] %}
    

    Example:

    {% tags_for_object foo_object as tag_list %}
    

    You can then loop through the tag_list variable in the template to display the tags.

    {% tags_for_object foo_object as tag_list %}
    
    <ul>
    {% for tag in tag_list %}
      <li>{{ tag }}</li>
    {% endfor %}
    </ul>
    

    For the second part of your question, you understand the code correctly. If the variable object exists in the context (and doesn’t evaluate to False), it is displayed. If it does not exist in the context (or if it evaluates to False), then the code loops through the objects in object_list, and displays them.

    As for why you would want to do this, you would have to look at the code that uses inlines/default.html to work out what the designer had in mind.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 300k
  • Answers 300k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You need to register a receiver like this: <receiver android:name=".receiver.ConnectivityReceiver"… May 13, 2026 at 7:58 pm
  • Editorial Team
    Editorial Team added an answer It's set into fail state, because copy does not know… May 13, 2026 at 7:58 pm
  • Editorial Team
    Editorial Team added an answer MVC2 is not a huge leap from MVC1. Most likely… May 13, 2026 at 7:58 pm

Related Questions

I am reading the source code of subsonic 3. in the file IRepository.cs I
It's right there, in the package that it should be indexing. Still, when I
I was reading through the source code for MeioUpload to make sure I understand
I'm working on a fairly large project for a trading company in Philadelphia. The
I am trying to join a number of binary files that were split during

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.