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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T15:11:24+00:00 2026-05-12T15:11:24+00:00

I would like to make a django custom tag to display 10 entry titles

  • 0

I would like to make a django custom tag to display 10 entry titles from the category where the user is reading an article. How can I do this? I need to pass the category from the actual entry.

  • 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-12T15:11:24+00:00Added an answer on May 12, 2026 at 3:11 pm

    The best way to do this would be with an inclusion tag. This is a tag that renders a template fragment which renders the 10 related articles.

    You just pass in the current article into the tag, and return the context for the template fragment – ie the related articles.

    @register.inclusion_tag('related_articles.html')
    def related_articles(article, count):
        category = article.category
        articles = category.article_set.exclude(id=article.id)[:count]
        return {'articles': articles}
    

    You’ll need a related_articles.html file in your templates directory which outputs the articles. Then, to call it from your main template, you would just do

    {% related_articles article 10 %}
    

    where article is the name of the article object.

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

Sidebar

Related Questions

I have a custom django admin page, and I would like to make the
I live in Norway, and when i make Django apps i would like to
I would like to make a password and username entry field. And a submit
I would like to make my app freeware, but if a user is willing
I have python/django app on Heroku (Cedar stack) and would like to make it
I'm using Django 1.2. I would like to make a model with 3 fields,
I'm trying to learn Django and I would like feedback from anyone who has
I currently have a ModelForm set up in Django, but would like to make
I would like to desing web application in django to make reservations for gym
I have a model where I would like to make a custom admin change_form

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.